For a single predictor, this method returns the usual ANOVA table from
stats::anova.lm(). For models with more than one predictor, it stops by
default because that table uses sequential Type I sums of squares, which
depend on the order of terms in the formula.
Usage
# S3 method for class 'honest_lm'
anova(object, ..., beg = FALSE)Arguments
- object
An
honest_lmobject.- ...
Passed to
stats::anova().- beg
Logical. Set to
TRUEto explicitly request sequential Type I sums of squares for a model with more than one predictor.