Estimates the probability of survival past some specified time using Kaplan-Meier estimation
surv.km(tl, dl, tt, var = FALSE, conf.int = FALSE, weight.perturb = NULL,
perturb.vector = FALSE)
A list is returned:
the estimate of survival at the time of interest, \(\hat{S}(t) = P(T>t)\)
the variance estimate of \(\hat{S}(t)\); if var = TRUE or conf.int = TRUE
a vector of size 2; the 95% confidence interval for \(\hat{S}(t)\) based on a normal approximation; if conf.int = TRUE
a vector of size 2; the 95% confidence interval for \(\hat{S}(t)\) based on sample quantiles of the perturbed values, described above; if conf.int = TRUE
a vector of size x where x is the number of columns of the provided weight.perturb matrix (or x=500 if weight.perturb is not provided); the perturbed values of \(\hat{S}(t)\); if perturb.vector = TRUE and either var=TRUE or conf.int = TRUE
observed event time of primary outcome, equal to min(T, C) where T is the event time and C is the censoring time.
event indicator, equal to I(T<C) where T is the event time and C is the censoring time.
the time of interest, function estimates the probability of survival past this time
TRUE or FALSE; indicates whether a variance estimate for survival is requested, default is FALSE.
TRUE or FALSE; indicates whether a 95% confidence interval for survival is requested, default is FALSE.
a n by x matrix of weights where n = length of tl; used for perturbation-resampling, default is null. If var or conf.int is TRUE and weight.perturb is not provided, the function generates exponential(1) weights.
TRUE or FALSE; indicates whether a vector of the perturbed values of the survival estimate is requested, default is FALSE. This argument is ignored if both var and conf.int are FALSE.
Layla Parast
See documentation for delta.km for details.
Kaplan, E. L., & Meier, P. (1958). Nonparametric estimation from incomplete observations. Journal of the American Statistical Association, 53(282), 457-481.
data(example_rct)
example_rct.treat = example_rct[example_rct$treat == 1,]
surv.km(tl=example_rct.treat$TL, dl = example_rct.treat$DL, tt=2)
Run the code above in your browser using DataLab