print.survfit {survival} | R Documentation |
Print number of observations, number of events, the restricted mean survival and its standard error, and the median survival with confidence limits for the median.
## S3 method for class 'survfit' print(x, scale=1, digits = max(options()$digits - 4,3), print.rmean=getOption("survfit.print.rmean"), rmean = getOption('survfit.rmean'),...)
x |
the result of a call to the |
scale |
a numeric value to rescale the survival time, e.g.,
if the input data to survfit were in days,
|
digits |
Number of digits to print |
print.rmean,rmean |
Options for computation and display of the restricted mean. |
... |
for future results |
The mean and its variance are based on a truncated estimator. That is, if the
last observation(s) is not a death, then the survival curve estimate does not
go to zero and the mean is undefined.
There are four possible approaches, which are selected by the
rmean
option.
The first is to set the upper limit to a constant, e.g.,rmean=365
.
In this case the reported mean would be the expected number of days, out
of the first 365, that would be experienced by each group. This is
useful if interest focuses on a fixed period.
Other options are "none"
(no estimate), "common"
and
"individual"
.
For the last of these, the mean is computed as the area under the curve,
over the
range from 0 to the maximum observed time for that curve.
Since the end point is random, values for different curves are not
comparable and the printed standard errors are an underestimate as
they do not take into account this random variation. This option is
provided mainly for backwards compatability, as this estimate was the
default (only) one in earlier releases of the code.
The "common"
option uses the maximum time for all curves in the
object as a common upper limit for the auc calculation.
The median and its confidence interval are defined by drawing a horizontal line at 0.5 on the plot of the survival curve and its confidence bands. The intersection of the line with the lower CI band defines the lower limit for the median's interval, and similarly for the upper band. If any of the intersections is not a point, then we use the smallest point of intersection, e.g., if the survival curve were exactly equal to 0.5 over an interval.
x, with the invisible flag set to prevent printing.
(The default for all print functions in R is to return the object
passed to them; print.survfit follows the pattern. If you want to
capture these printed results for further processing, see the
table
component of summary.survfit
.)
he number of observations, the number of events, the median survival
with its confidence interval, and optionally the
restricted mean survival (rmean
) and its standard error, are printed.
If there are multiple curves, there is one line of output for each.
Miller, Rupert G., Jr. (1981). Survival Analysis. New York:Wiley, p 71.