The goal of svycoxme is to fit mixed-effects proportional hazards
models to data from complex samples. Most of the work is done by the
coxme
package. The svycoxme package provides wrappers to
fit models using survey designs from the survey
package,
and provides variances estimation by Taylor series linearisation or
replicate weights.
You can install svycoxme from CRAN with:
install.packages("svycoxme")
You can install the development version of svycoxme from GitHub with:
# install.packages("devtools")
::install_github("bdrayton/svycoxme") devtools
This is a basic example using the samp_srcs dataset provided with the package.
library(survey)
library(svycoxme)
<- svydesign(ids = ~group_id, weights = ~weight, data = samp_srcs)
des
<- svycoxme(Surv(stat_time, stat) ~ X1 + X2 + X3 + (1 | group_id), design = des)
fit1
summary(fit1)