Dear Stata users,
I am wondering, is it possible to generate upper and lower 95% CI of variable V1 as new variable using -centile- command. I have tried -statsby- but no results (all values are missing for median, upper and lower variables).
Codes:
Many thanks
I am wondering, is it possible to generate upper and lower 95% CI of variable V1 as new variable using -centile- command. I have tried -statsby- but no results (all values are missing for median, upper and lower variables).
Codes:
PHP Code:
bys ID: centile V1
statsby median=r(c_50) upper=r(ub_50) lower=r(lb_50), clear by( ID): centile V1,
Comment