Creates a function to evaluate the survival function of the censoring distribution, \(G(t) = P(C > t)\), using a Kaplan-Meier estimator.
create_censor_eval(time_vec, status_vec)A function that takes a numeric vector of times and returns the estimated censoring survival probabilities \(G(t)\) at those times.
Numeric vector of survival/censoring times.
Numeric vector of event statuses (1=event, 0=censored).