Learn R Programming

hdcuremodels (version 0.0.6)

sufficient_fu_test: Test for sufficient follow-up

Description

Tests for sufficient follow-up using a Kaplan-Meier fitted object.

Usage

sufficient_fu_test(object)

Value

p_value

p-value from testing the null hypothesis that there was not sufficient follow-up against the alternative that there was sufficient follow-up

n_n

total number of events that occurred at time > pmax(0, 2*(last observed event time)-(last observed time)) and < the last observed event time

N

number of observations in the dataset

Arguments

object

a survfit object.

References

Maller, R. A. and Zhou, X. (1996) Survival Analysis with Long-Term Survivors. John Wiley & Sons.

See Also

survfit, cure_estimate, nonzerocure_test

Examples

Run this code
library(survival)
withr::local_seed(1234)
temp <- generate_cure_data(n = 100, j = 10, n_true = 10, a = 1.8)
training <- temp$training
km_fit <- survfit(Surv(Time, Censor) ~ 1, data = training)
sufficient_fu_test(km_fit)

Run the code above in your browser using DataLab