report.stanreg {report} | R Documentation |
Reporting Bayesian Models
Description
Create reports for Bayesian models. The description of the parameters follows the Sequential Effect eXistence and sIgnificance Testing framework (see SEXIT documentation).
Usage
## S3 method for class 'stanreg'
report(x, ...)
Arguments
x |
Object of class |
... |
Arguments passed to or from other methods. |
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
# Bayesian models
library(rstanarm)
model <- suppressWarnings(stan_glm(mpg ~ qsec + wt, data = mtcars, refresh = 0, iter = 500))
r <- report(model)
r
summary(r)
as.data.frame(r)
[Package report version 0.5.9 Index]