Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

ways to examine model in r

model 

# Call summary() on model to get more details
summary(model)

# Call glance() on model to see the details in a tidier form
broom::glance(model)

# Call wrapFTest() on model to see the most relevant details
sigr::wrapFTest(model)
 
PREVIOUS NEXT
Tagged: #ways #examine #model
ADD COMMENT
Topic
Name
7+4 =