Dear Experts,
I want to obtain a cut-off for my aim "To determine a discriminatory value for MUAC for mortality by 12 months"
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 created a variable for anthro measure with categories
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 for both the variable
logit death_until_twelve muac2
predict b, pr
roctab death_until_twelve hat, 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 obtain cut-off
Cross Section Data --> PanelI've been trying to aggregate my current data set into a panel format. Currently the data is a cross…
match tablesHello everybody I am trying to merge 2 tables using the command merge 1:1 or 1:m or m:1 or m:n, but…
pystata does not work in Mac M1Hi all, Has anyone with Mac M1 successfully used Stata in Python via the pystata library? I am havi…
profit efficiencyI am using a stochastic frontier approach to estimate the profit efficiency. But I am not sure how t…
unifying the names of companies?Dear All, I have this data set. Code: * Example generated by -dataex-. For more info, type help dat…
Subscribe to:
Post Comments (Atom)
0 Response to To obtain cut-off
Post a Comment