tabglm {tab} | R Documentation |
Create Summary Table for Fitted Generalized Linear Model
Description
Creates a table summarizing a GLM fit using glm
.
Usage
tabglm(
fit,
columns = NULL,
xvarlabels = NULL,
factor.compression = 1,
sep.char = ", ",
decimals = 2,
formatp.list = NULL
)
Arguments
fit |
Fitted |
columns |
Character vector specifying what columns to include. Choices
for each element are |
xvarlabels |
Named list specifying labels to use for certain predictors.
For example, if |
factor.compression |
Integer value from 1 to 5 controlling how much compression is applied to factor predictors (higher value = more compression). If 1, rows are Variable, Level 1 (ref), Level 2, ...; if 2, rows are Variable (ref = Level 1), Level 2, ...; if 3, rows are Level 1 (ref), Level 2, ...; if 4, rows are Level 2 (ref = Level 1), ...; if 5, rows are Level 2, ... |
sep.char |
Character string with separator to place between lower and
upper bound of confidence intervals. Typically |
decimals |
Numeric value specifying number of decimal places for numbers other than p-values. |
formatp.list |
List of arguments to pass to |
Value
Examples
# Linear regression: BMI vs. age, sex, race, and treatment
fit <- glm(BMI ~ Age + Sex + Race + Group, data = tabdata)
tabglm(fit)
# Can also use piping
fit %>% tabglm()
# Logistic regression: 1-year mortality vs. age, sex, race, and treatment
fit <- glm(
death_1yr ~ Age + Sex + Race + Group,
data = tabdata,
family = binomial
)
fit %>% tabglm()
# Same as previous, but with custom labels for Age and Race and factors
# displayed in slightly more compressed format
fit %>%
tabglm(
xvarlabels = list(Age = "Age (years)", Race = "Race/ethnicity"),
factor.compression = 2
)
# Logistic regression model with some higher-order terms
fit <- glm(
death_1yr ~ poly(Age, 2, raw = TRUE) + Sex + BMI + Sex * BMI,
data = tabdata,
family = "binomial"
)
fit %>% tabglm()