An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20080929/791bdfa1/attachment.pl>
Hazard plot
2 messages · Laura Bonnett, Dieter Menne
Laura Bonnett <l.j.bonnett <at> googlemail.com> writes:
I am looking at a continuous variable, age. I am looking at time to 12-month remission and can calculate the HR and 95% confidence interval are follows: coxfita = coxph(Surv(rem.Remtime,rem.Rcens)~nearma$all.age,data=nearma) exp(coxfita$coefficients) exp(confint(coxfita)) However, because I am looking at age as a continuous variable I cannot draw a Kaplan-Meier curve. Instead I need to draw a plot of hazard against age.
Function survplot in package Design has "hazard" as an option. Dieter