Hello,

I am new to survival analysis using Stata and I am trying to save the estimates from the simple stcox regression with dummies (var* in the simple code below), but for some reason it won't save it properly.

forvalues group=1/5{
...
stset time_d, failure(fail) enter(time date0)
stcox var*, nohr

}

I am not sure how to append the results for all groups saving the estimated coefficients for all dummies - I would very appreciate if someone could help me with this.