Autoplot survival::aareg
# S3 method for class 'aareg'
autoplot(
object,
maxtime = NULL,
surv.connect = TRUE,
facets = TRUE,
ncol = NULL,
xlab = "",
ylab = "",
...
)
survival::aareg
instance
truncate the input to the model at time "maxtime"
logical frag indicates whether connects survival curve to the origin
Logical value to specify use facets
Number of facet/subplot columns
character vector or expression for x axis label
character vector or expression for y axis label
other arguments passed to autoplot.survfit
ggplot
if (FALSE) { # \dontrun{
if (requireNamespace("survival", quietly = TRUE)) {
autoplot(aareg(Surv(time, status) ~ age + sex + ph.ecog, data = lung, nmin = 1))
}
} # }