Lets say i have incidence data of outcome A, and i want to see how incidence of A varies by levels of a variable X. I want to see this difference at 3 years. After Stsetting, I run this code:
For each level of variable X (lets say there are 3), i get for timepoints 0 and 3, the failure function, std error and 95% CI. Is there any way i can compare the confidence intervals of Xlevel3 to Xlevel1 by deriving a p value, for this 3 year time point?
Code:
sts list, at(0,3) by (X) failure
Comment