report.aov {report} | R Documentation |
Reporting ANOVAs
Description
Create reports for ANOVA models.
Usage
## S3 method for class 'aov'
report(x, ...)
## S3 method for class 'aov'
report_effectsize(x, ...)
## S3 method for class 'aov'
report_table(x, ...)
## S3 method for class 'aov'
report_statistics(x, table = NULL, ...)
## S3 method for class 'aov'
report_parameters(x, ...)
## S3 method for class 'aov'
report_model(x, table = NULL, ...)
## S3 method for class 'aov'
report_info(x, effectsize = NULL, ...)
## S3 method for class 'aov'
report_text(x, table = NULL, ...)
Arguments
x |
Object of class |
... |
Arguments passed to or from other methods. |
table |
Provide the output of |
effectsize |
Provide the output of |
Value
An object of class report()
.
See Also
Specific components of reports (especially for stats models):
Other types of reports:
Methods:
Template file for supporting new models:
Examples
data <- iris
data$Cat1 <- rep(c("A", "B"), length.out = nrow(data))
model <- aov(Sepal.Length ~ Species * Cat1, data = data)
r <- report(model)
r
summary(r)
as.data.frame(r)
summary(as.data.frame(r))
[Package report version 0.5.9 Index]