Contrary to standard survival analysis models, which rely on the assumption that the entire population will eventually experience the event of interest, mixture cure models allow to split the population in susceptible and non-susceptible (cured) individuals.
In this R package, we implement the semi-parametric proportional-hazards (PH) cure model of Sy_Taylor_2000;textualpenPHcure extended to time-varying covariates. If we define \(T\) as the time-to-event, the survival function for the entire population is given by $$S(t)=(1-p)+pS(t|Y=1)$$ where \(p\) is the incidence (i.e. probability of being susceptible) and \(S(t|Y=1)\) is the latency (i.e. survival function conditional on being susceptible).
The incidence is modeled by a logistic regression model: $$p=P(Y=1|\mathbf{x}_i)=\exp(\mathbf{x}_i'\textbf{b})/(1+\exp(\mathbf{x}_i'\textbf{b)}),$$ where \(\textbf{x}_i\) is a vector of time-invariant covariates (including the intercept) and \(\mathbf{b}\) a vector of unknown coefficients. Whereas, the latency is modeled by a Cox<U+2019>s PH model: $$\lambda(t|Y=1,\textbf{z}_i(t))=\lambda_{0}(t|Y=1)e^{\textbf{z}_i'(t)\boldsymbol{\beta}},$$ where \(\textbf{z}_i(t)\) is a vector of time-varying covariates, \(\lambda_{0}(t|Y=1)\) is an arbitrary conditional baseline hazard function and \(\boldsymbol{\beta}\) is a vector of unknown coefficients.
The function penPHcure
allows to:
estimate the regression coefficients (\(\textbf{b}\), \(\boldsymbol{\beta}\)) and the baseline hazard function \(\lambda_{0}(t|Y=1)\);
compute confidence intervals for the estimated regression coefficients using the basic/percentile bootstrap method;
perform variable selection with the SCAD-penalized likelihood technique proposed by Beretta_Heuchenne_2019;textualpenPHcure.
Moreover, the function penPHcure.simulate
allows to simulate data from a PH cure model, where the event-times are generated on a continuous scale from a piecewise exponential distribution conditional on time-varying covariates, using a method similar to the one described in Hendry_2014;textualpenPHcure.