我已经使用coxme
派生了混合效果Cox模型,我试图在乳胶表中提取结果。我看到texreg()
不起作用,我想知道是否还有其他选择。
答案 0 :(得分:2)
我真的很喜欢带有pixiedust包的扫帚来解决这类问题。 Broom不会处理开箱即用的coxme对象,但是第三个包ehahelper为这些对象提供了功能。
# install ehahelper, not on cran
devtools::install_github('junkka/ehahelper')
一旦安装完成整理
library(coxme)
library(ehahelper)
library(broom)
fit <- coxme(Surv(y, uncens) ~ trt + (1|center), eortc)
tidy_fit <- tidy(fit)
class(tidy_fit)
[1] "data.frame"
tidy_fit
term estimate std.error statistic p.value conf.low conf.high
1 trt 0.7086127 0.06424398 11.03 0 0.5826968 0.8345286
一旦进入数据框,您就可以导出到xtable,或者在降价文档中使用pixiedust来pdf。