print.anova
Print an anova Object
Description
Print the output of the anova function
and other objects of the class "anova".
Usage
## S3 method for class 'anova':
print(x, digits = max(getOption("digits")-2,3), signif.stats = getOption("show.signif.stars", default=TRUE), ...)
Arguments
x |
The output of the anova function or something of similar structure.
|
digits |
The number of significant digits to show.
|
signif.stars |
a logical value that is passed to printCoefmat.
If TRUE add a sequence of stars or a dot
after the row for a term with a low p-value,
the number of stars indicating how statistically significant the term is.
A legend will be printed below.
If FALSE do not print the stars or the legend.
|
... |
All extra arguments will be passed to printCoefmat,
which is used to the data.frame in the anova object.
|
See Also
Examples
anova(lm(ozone ~ radiation + temperature + wind, data=Sdatasets::air))
# Print without stars:
print(anova(lm(ozone ~ radiation + temperature + wind, data=Sdatasets::air)),
signif.stars=FALSE)