Description Usage Arguments Details Value See Also Examples
Table for complex design cox model.
1 | svycox.display(svycoxph.obj, decimal = 2)
|
svycoxph.obj |
svycoxph.object |
decimal |
digit, Default: 2 |
DETAILS
List including table, metric, caption
1 2 3 4 5 6 7 8 9 10 11 12 13 | library(survival);data(pbc)
pbc$sex = factor(pbc$sex)
pbc$stage = factor(pbc$stage)
pbc$randomized<-with(pbc, !is.na(trt) & trt>0)
biasmodel<-glm(randomized~age*edema,data=pbc,family=binomial)
pbc$randprob<-fitted(biasmodel)
if (is.null(pbc$albumin)) pbc$albumin<-pbc$alb ##pre2.9.0
dpbc <- survey::svydesign(id=~1, prob=~randprob, strata=~edema, data=subset(pbc,randomized))
model <- survey::svycoxph(Surv(time,status>0)~ sex + protime + albumin + stage,design=dpbc)
svycox.display(model)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.