Pretty print model results
pretty_print_summary.Rd
Nice printing of model results, optionally produces HTML document
Arguments
- object
(mbsem) An object of
mbsem-class
returned byminorbsem
.- interval
(real in (0, 1)) Credible interval to return.
- digits
(positive integer) Number of decimal places to print in table
- simple
(Logical) TRUE to produce table with less information about parameters; FALSE: produces table with more information
- save_html
(string) Optional file name to save table as HTML
Examples
if (FALSE) {
fit <- minorbsem("F1 =~ x1 + x2 + x3
F2 =~ x4 + x5 + x6
F3 =~ x7 + x8 + x9", HS)
pretty_print_summary(fit)
pretty_print_summary(fit, simple = FALSE)
}