View source: R/regression_summary.R
regression_summary | R Documentation |
Summarary Method for Multivariate or Univarate Regression
regression_summary(object, cred = 0.95, ...)
object |
An object of class |
cred |
Numeric. The credible interval width for summarizing the posterior distributions (defaults to 0.95; must be between 0 and 1). |
... |
Currently ignored |
A list of length p including the summaries for each regression.
# note: iter = 250 for demonstrative purposes
# data
Y <- bfi
Y <- subset(Y, select = c("A1", "A2",
"gender", "education"))
fit_mv_ordinal <- estimate(Y, formula = ~ gender + as.factor(education),
type = "continuous",
iter = 250,
progress = TRUE)
regression_summary(fit_mv_ordinal)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.