coxmnar implements estimation for the Cox proportional
hazards model when the failure indicator (cause of failure) is missing
not at random (MNAR), following the methodology of Liu and Liu
(2026) (Statistics and Computing, 36, 112).
simulate_coxmnar_data() implementing
paper simulation DGPs.You can install the development version of coxmnar from
GitHub:
# install.packages("devtools")
devtools::install_github("shikhartyagi/coxmnar")library(coxmnar)
# Simulate survival data with MNAR missing failure indicators
set.seed(123)
sim_data <- simulate_coxmnar_data(n = 200, beta0 = 0.2, mechanism = "mnar", seed = 123)
# Fit Adjusted-Imputation MNAR estimator
fit <- coxmnar(
cause ~ Z,
time = "time",
data = sim_data,
method = "ai",
B = 100L,
seed = 123
)
summary(fit)To cite coxmnar in publications:
citation("coxmnar")