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
Keep specific rows in a variableHello, I have a dataset with two variables: time and title. Title refers to some headline news -- t…
How to drop the duplicates with the fewest missing values?I have duplicates that share values, but some are missing. I would like to keep the observation of e…
Generating a variable that is gives average score based on 'yes' responses on a bunch of variablesHello experts, I have been facing a challenge in producing an output that is based on average score…
Fractional response model with binary endogenous explanatory variableHello everyone, As the title mention, I have an endogenous explanatory variable, which happens to be…
command window (display actual commands not temp commands)Hi there When I run commands from a do file, the command window displays the commands a "temp" comma…
Subscribe to:
Post Comments (Atom)
0 Response to To obtain cut-off
Post a Comment