This Journal of Statistical Software paper introduces the R package icenReg for regression with interval-censored survival data — data in which an event time is known only to lie within an interval. It reviews the three model classes for interval-censored data — the nonparametric maximum likelihood estimator (NPMLE / Turnbull estimator), semiparametric regression (proportional hazards, proportional odds, accelerated failure time), and fully parametric regression — and provides fast, reliable fitting algorithms for all three, plus imputation of the censored responses and diagnostics for the regression effects and baseline distribution.
ic_sp fits PH and proportional-odds models semiparametrically and obtains standard errors by bootstrap.ic_np (nonparametric/Turnbull), ic_sp (semiparametric PH / proportional odds), and ic_par (fully parametric accelerated-failure-time, proportional-odds, or proportional-hazards with a choice of baseline distribution).diag_baseline and diag_covar give visual checks of the parametric-baseline and covariate-effect assumptions against the semiparametric/nonparametric fits, and imputeCens draws imputations of the censored responses conditional on the fitted model."Interval censored data occurs when an event time is known only up to an interval."
"The non-parametric maximum likelihood estimator (NPMLE; Turnbull 1976) is often preferred, a generalization of the Kaplan Meier curves… This is also referred to as the Turnbull estimator."
As a software paper its value to the wiki is mostly as a clear map of the interval-censoring problem, which is the awkward middle child of survival analysis: right censoring has clean partial-likelihood machinery, but once the event time is only bracketed, even the nonparametric estimator loses its rate and the Cox model loses its tidy separation of baseline and regression. icenReg's three-tier design (nonparametric for honesty, semiparametric for robustness, parametric for efficiency, with diagnostics to move between them) is a sensible template. It sits naturally beside the parametric-survival and counting-process pages as the third corner of the survival cluster — the one that takes the observation scheme, not the hazard family or the martingale, as the hard part.