Free Access Week - Data Engineering + BI
Data Engineering and BI courses are free this week!
Free Access Week - Jun 2-8

tab (version 5.1.1)

glm_v: Print a GLM Summary Table to the RStudio Viewer

Description

You can call this function as you would glm or pass a previously fitted glm object. Either way, the result is a summary table printed to the Viewer.

Usage

glm_v(...)

Arguments

...

Arguments to pass to glm.

Value

kable

Examples

Run this code
# NOT RUN {
# Fit and view
glm_v(death_1yr ~ Age + Sex + Race, data = tabdata, family = "binomial")

# Fit then view
fit <- glm(death_1yr ~ Age + Sex + Race, data = tabdata, family = "binomial")
glm_v(fit)

# Piping is OMG so cool Hashtag HexStickerz
fit %>% glm_v()

# }

Run the code above in your browser using DataLab