define_surv_fit {heemod} | R Documentation |
Define a Fitted Survival Model
Description
Define a fitted survival models with a Kaplan-Meier estimator or parametric distributions
Usage
define_surv_fit(x)
Arguments
x |
a survfit or flexsurvreg object |
Value
A surv_object
object.
Examples
library(survival)
define_surv_fit(
survfit(Surv(time, status) ~ 1, data = colon)
)
define_surv_fit(
flexsurv::flexsurvreg(Surv(time, status) ~ 1, data = colon, dist = "exp")
)
[Package heemod version 1.0.1 Index]