Table of coefficients for survreg model
This function is mostly useful for plotting a pmtree. The generic plotting does not show the estimate and confidence interval of the scale parameter. This one does.
coeftable.survreg(model, confint = TRUE, digits = 2, intree = FALSE)
model
: model of class survreg
confint
: should a confidence interval be computed? Default: TRUEdigits
: integer, used for formating numbers. Default: 2intree
: is the table plotted within a tree? Default: FALSENone.
if(require("survival") & require("TH.data")) { ## Load data data(GBSG2, package = "TH.data") ## Weibull model bmod <- survreg(Surv(time, cens) ~ horTh, data = GBSG2, model = TRUE) ## Coefficient table grid.newpage() coeftable.survreg(bmod) ## partitioned model tr <- pmtree(bmod) ## plot plot(tr, terminal_panel = node_pmterminal(tr, plotfun = survreg_plot, confint = TRUE, coeftable = coeftable.survreg)) }
Useful links