View source: R/report.default.R
report.default | R Documentation |
Template file to add report support for new objects. Check-out the vignette on Supporting New Models.
## Default S3 method:
report(x, ...)
## Default S3 method:
report_effectsize(x, ...)
## Default S3 method:
report_table(x, ...)
## Default S3 method:
report_statistics(x, ...)
## Default S3 method:
report_parameters(x, ...)
## Default S3 method:
report_intercept(x, ...)
## Default S3 method:
report_model(x, ...)
## Default S3 method:
report_random(x, ...)
## Default S3 method:
report_priors(x, ...)
## Default S3 method:
report_performance(x, ...)
## Default S3 method:
report_info(x, ...)
## Default S3 method:
report_text(x, ...)
x |
Object of class |
... |
Arguments passed to or from other methods. |
An object of class report()
.
Specific components of reports (especially for stats models):
report_table()
report_parameters()
report_statistics()
report_effectsize()
report_model()
report_priors()
report_random()
report_performance()
report_info()
report_text()
Other types of reports:
report_system()
report_packages()
report_participants()
report_sample()
report_date()
Methods:
as.report()
Template file for supporting new models:
report.default()
library(report)
# Add a reproducible example instead of the following
model <- lm(Sepal.Length ~ Petal.Length * Species, data = iris)
r <- report(model)
r
summary(r)
as.data.frame(r)
summary(as.data.frame(r))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.