kAnova: Nicely Formatted ANOVA Table

Description Usage Arguments Examples

View source: R/misc.R

Description

Returns a nicely formatted ANOVA table. See kCoef for other details.

Usage

1
kAnova(fit, test = "LRT", swap.periods = TRUE)

Arguments

fit

the model fit to generate an ANOVA table for.

test

the type of test to perform. default is likelihood-ratio test (LRT).

swap.periods

swap periods with spaces?

Examples

1
2
3
4
x <- rnorm(100)
y <- ifelse( x + runif(100) > 1, 1, 0 )
myFit <- glm( y ~ x, family="binomial" )
kAnova( myFit )

kevinushey/Kmisc documentation built on May 20, 2019, 9:08 a.m.