Hi!

I have conducted a competing risk analysis, where I have three covariates, and would like to calculate and plot confidence intervals to the cumulative incidence plot according to the values of one of the covariates. I am wondering if this is possible in Stata?

I have used the following code:

Code:
stset out, enter(in) failure(outcome==1)
stcrreg group i.year age, compete(outcome==2)
stcurve, at1(group==0) at2(group==1) at3(group==3) cif
However, it seems that stcurve is not able to calculate confidence intervals. With stcompet it would be possible to calculate confidence intervals, but it does not allow any covariates.

Any suggestions how to proceed?

Thanks in advance,
Christian