Dear Experts,
I want to obtain a cut-off for MUAC among infants less than 6 months of age.
These are my syntax, I am not sure about commands as I am new to this.
********first I have created a variable for death from birth to twelve months.
capture drop death_until_twelve
gen death_until_twelve=1 if dod_birth !=. | dod_three !=. | dod_six !=. | dod_nine !=. | dod_twelve !=.
replace death_until_twelve=0 if death_until_twelve==.
tab death_until_twelve
*******then I have grouped a variable for MUAC with categories mentioned below
capture drop muac2
gen muac2 = 0 if muacs>=12.5
replace muac2 = 1 if muacs<12.5 & muacs>=12.0
replace muac2 = 2 if muacs<12.0 & muacs>=11.5
replace muac2 = 3 if muacs<11.5 & muacs>=11.0
replace muac2 = 4 if muacs<11.0 & muacs>=10.5
replace muac2 = 5 if muacs<10.5 & muacs>=10.0
replace muac2 = 6 if muacs<10.0 & muacs>=9.5
replace muac2 = 7 if muacs<9.5 & muacs>=9.0
replace muac2 = 8 if muacs<9.0 & muacs>=8.5
replace muac2 = 9 if muacs<8.5 & muacs>=8.0
replace muac2 = 10 if muacs<8.0 & muacs>=7.5
replace muac2 = 11 if muacs<7.5 & muacs>=7.0
replace muac2 = 12 if muacs<7.0 & muacs>=6.5
replace muac2 = 13 if muacs<6.5
tab muac2
********Then, I run logit
logit death_until_twelve muac2
predict yhat, pr
roctab death_until_twelve yhat, detail
lsens
Please suggest the right way to get the results. Your help would be highly appreciated.
Thanks with sincere regards,
Harpreet
Related Posts with To determine a discriminatory value for MUAC for risk of mortality by 12 months
Exponential moving average (tssmooth exponential) over last X observationsHi! I do not fully understand the "tssmooth exponential" command. How exactly is the value calculate…
count total observations per firm per yearHello, I am a new Statalist. I have a firm ID variable(Ticker), a string variable(NED consist of "y…
Creating line graph for a binary variable across two groups over yearsHi, I am looking to create a line graph for a binary variable 'PERFORMANCE' (students with good hono…
Finite mixture models (FFMDear Stata users, I am in need of help, Does anyone know how to calculate the density properties (m…
Looping over different observationsHi all, I am using a time-series dataset, with country names, the year, fragility, and fragility ra…
Subscribe to:
Post Comments (Atom)
0 Response to To determine a discriminatory value for MUAC for risk of mortality by 12 months
Post a Comment