sufficient_fu_test: Test for sufficient follow-up

View source: R/sufficient_fu_test.R

sufficient_fu_testR Documentation

Test for sufficient follow-up

Description

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

Usage

sufficient_fu_test(object)

Arguments

object

a survfit 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

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

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)

hdcuremodels documentation built on Aug. 8, 2025, 7:38 p.m.