Dear Statalist,
I am currently estimating three nested Cox proportional hazards models on single-failure-per-subject data using Stata/SE 14.2. I am estimating the associations of several maternal characteristics with the risk of miscarriage in the first 150 days of gestation. The three models are of the form:
The data consist of 11,140 subjects, 48,329.5 person-months at-risk, and 1,472 failures. I know that the likelihood ratio test can be used to test for differences in the global fit of one model nested within another, but I have a slightly different interest. Is there a formal test for differences in individual coefficients between nested models, or should one simply compare confidence intervals across models to understand this? Using the example above, I would basically like to formally test if:
Thank you for your help!
I am currently estimating three nested Cox proportional hazards models on single-failure-per-subject data using Stata/SE 14.2. I am estimating the associations of several maternal characteristics with the risk of miscarriage in the first 150 days of gestation. The three models are of the form:
Code:
stset enddate, id(id) origin(pregnancy_start) exit(censor) scale(30) fail(miscarriage) stcox i.a est sto eq1 stcox i.a i.b est sto eq2 stcox i.a i.b i.c /// variables a, b, and c are all factor variables with two levels (i.e. dummies) est sto eq3
Code:
[eq1]1.a==[eq2]1.a==[eq3]1.a
Comment