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")
devtools::install_github("bdrayton/svycoxme")
Example
This is a basic example using the samp_srcs dataset provided with the package.
library(survey)
library(svycoxme)
des <- svydesign(ids = ~group_id, weights = ~weight, data = samp_srcs)
fit1 <- svycoxme(Surv(stat_time, stat) ~ X1 + X2 + X3 + (1 | group_id), design = des)
summary(fit1)
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4