Thank you! I knew it would be something simple that I was missing. Much appreciate you taking the time to share those tips too.
-
Login or Register
- Log in with
**define list of variables that need to be split here local VLISTSTRING "procsops obstetriccomplications" // quick for testing local VLISTKEEP "plurality gravidity parity babynum placeofbirth preflanguage postcode" foreach item in `VLISTSTRING'{ use `original', clear *splitting your lists of procedures split `item', parse(`=char(10)') drop `item' keep episodeid babyepisodeid `VLISTKEEP' `item'* reshape long `item', i(episodeid babyepisodeid) j(`item'_no) drop if `item' =="" *making your binary variables: replace `item' =strtoname(`item') levelsof `item', local(listofthings) foreach thing of local listofthings{ gen `thing'=0 replace `thing'=1 if `item'=="`thing'" } collapse (max) `item'_no `listofthings' `VLISTKEEP', by(episodeid babyepisodeid) merge 1:1 episodeid babyepisodeid using `merged', nogenerate save `merged', replace } use `merged', clear
collapse (max) `item'_no `listofthings' , by(episodeid babyepisodeid)
collapse (max) `item'_no `listofthings' (firstnm) some_string_var other_string_var, by(episodeid babyepisodeid)
collapse (max) `item'_no `listofthings' `VLISTKEEPNUMERIC' (firstnm) `VLISTKEEPSTRING', by(episodeid babyepisodeid)
**define list of variables that need to be split here
local VLISTSTRING "procsops obstetriccomplications" // quick for testing
local VLISTKEEP "plurality gravidity parity babynum placeofbirth preflanguage postcode"
foreach item in `VLISTSTRING'{
use `original', clear
*splitting your lists of procedures
split `item', parse(`=char(10)')
drop `item'
keep episodeid babyepisodeid `VLISTKEEP' `item'*
reshape long `item', i(episodeid babyepisodeid) j(`item'_no)
drop if `item' ==""
*making your binary variables:
replace `item'="`item'_"+`item'
replace `item' =strtoname(`item')
levelsof `item', local(listofthings)
foreach thing of local listofthings{
gen `thing'=0
replace `thing'=1 if `item'=="`thing'"
}
collapse (max) `item'_no `listofthings' `VLISTKEEP', by(episodeid babyepisodeid)
merge 1:1 episodeid babyepisodeid using `merged', nogenerate
save `merged', replace
}
use `merged', clear
*making your binary variables:
replace `item'=substr("`item'",1,4)+"_"+`item'
replace `item' =strtoname(`item')
Comment