Dear all,
Can one directly compare hazard ratios (Hr) from two different regressions with different samples? For example:
. stset day, faliure(murder) if(country=="FR")
. stcox married
. stset day, failure(murder) if(country=="DE")
. stcox married
Suppose Hr for married = 0.891 (being married makes one a bit less likely to commit murder) for the France sample, and 0.781 for the German sample, can I say that being married in German makes you even less likely to commit murder than it does in France?
Normally I would use SUR (the "suest" and "test") for comparing coefficients from different linear regressions, but neither parametric survival model ("streg") nor semiparametric model ("stcox") is supported by "suest".
Can one directly compare hazard ratios (Hr) from two different regressions with different samples? For example:
. stset day, faliure(murder) if(country=="FR")
. stcox married
. stset day, failure(murder) if(country=="DE")
. stcox married
Suppose Hr for married = 0.891 (being married makes one a bit less likely to commit murder) for the France sample, and 0.781 for the German sample, can I say that being married in German makes you even less likely to commit murder than it does in France?
Normally I would use SUR (the "suest" and "test") for comparing coefficients from different linear regressions, but neither parametric survival model ("streg") nor semiparametric model ("stcox") is supported by "suest".
Comment