[Rd] Addition of plot=F argument to termplot
Terry Therneau
therneau at mayo.edu
Fri Oct 19 19:15:26 CEST 2012
I have a suggested addition to termplot.
We have a local mod that is used whenever none of the termplot options is quite right. It
is used here almost daily for Cox models in order to put the y axis on a risk scale:
----
fit <- coxph(Surv(time, status) ~ ph.ecog + pspline(age), data=lung)
zz <- termplot(fit, se=TRUE, plot=FALSE)
yy <- zz$age$y + outer(zz$age$se, c(0, -2, 2), '*')
matplot(zz$age$x, exp(yy), log='y', type='l', lty=c(1,2,2),
xlab="Age", ylab="Relative risk")
----
The return value is a list, each element of which is a dataframe. Another use is to
overlay the fits from two different models.
The changes to termplot.R and .Rd are small. Since we're not supposed to add attachments
to these emails, where to I send the updated files?
Terry T
More information about the R-devel
mailing list