Description Usage Arguments Examples
This function produces summary tables for fixed-effects binomial logistic regressions by extracting the relevent information from a glm and an lrm object.
1 | mdlfttngswsd(mdlcmp)
|
mdlcmp |
A list of model comparisons that result from anova results (e.g. m0m1: anova(m0, m1, test = "Chi)) |
1 2 3 4 5 6 7 8 9 | ## Not run:
m2 = glm(depvar ~ indepvar + inpepvar2, data = data, family = "binomial")
m1 = glm(depvar ~ indepvar1, data = data, family = "binomial")
m0 =glm(depvar ~ 1, data = data, family = "binomial")
m2m1 = anova(m2, m1, test = "Chi)
m1m0 = anova(m1, m0, test = "Chi)
mdlfttngswsd(m2m1, m1m0)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.