Skip to contents

Nice printing of model results, optionally produces HTML document

Usage

pretty_print_summary(
  object,
  interval = 0.9,
  digits = 3,
  simple = TRUE,
  save_html = NULL
)

Arguments

object

(mbsem) An object of mbsem-class returned by minorbsem.

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)
}