tidy_stats.glm: Create a tidy stats data frame from a glm object

Description Usage Arguments Examples

View source: R/tidy_stats.glm.r

Description

tidy_stats.glm takes a glm object and converts the object to a tidy stats data frame.

Usage

1
2
## S3 method for class 'glm'
tidy_stats(model, args = NULL)

Arguments

model

Output of glm().

args

Unused.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# Get data
counts <- c(18,17,15,20,10,20,25,13,12)
outcome <- gl(3,1,9)
treatment <- gl(3,3)
d.AD <- data.frame(treatment, outcome, counts)

# Run model
glm.D93 <- glm(counts ~ outcome + treatment, family = poisson())

# Tidy stats
tidy_stats(glm.D93)

WillemSleegers/tidystats-v0.3 documentation built on Aug. 12, 2019, 5:31 p.m.