calc_km_pi {survParamSim} | R Documentation |
Generate Kaplan-Meier curves with prediction intervals from parametric bootstrap simulation
Description
Generate Kaplan-Meier curves with prediction intervals from parametric bootstrap simulation
Usage
calc_km_pi(
sim,
trt = NULL,
group = NULL,
pi.range = 0.95,
calc.obs = TRUE,
simtimelast = NULL,
trt.assign = c("default", "reverse")
)
Arguments
sim |
A |
trt |
An optional string to specify which column define treatment status.
You will have survival curves with different colors in |
group |
Optional string(s) to specify grouping variable(s).
You will have faceted survival curves for these variables in |
pi.range |
Prediction interval for simulated survival curves. |
calc.obs |
A logical to specify whether KM estimates will be performed
for the observed data. Need be set as FALSE if survival information in the |
simtimelast |
An optional numeric to specify last simulation time for survival curve.
If NULL (default), the last observation time in the |
trt.assign |
Specify which of the categories of |
Details
If your trt
has more than two categories/levels and want to specify which one to use as a
reference group, you can convert the column into a factor in the newdata
input for
surv_param_sim()
. The first level will be used as a reference group.