View source: R/print_cibound.R
print.cibound | R Documentation |
Print the diagnostic information of a cibound
-class
object.
## S3 method for class 'cibound'
print(x, digits = 5, ...)
x |
The output of a |
digits |
The number of digits after the decimal point. To be
passed to |
... |
Other arguments. They will be ignored. |
This is the print method for the output of
ci_bound_wn_i()
, a cibound
-class object. It prints the
diagnostic information on the bound being found and the search
process.
x
is returned invisibly. Called for its side effect.
data(simple_med)
dat <- simple_med
mod <-
"
m ~ x
y ~ m
"
fit_med <- lavaan::sem(mod, simple_med, fixed.x = FALSE)
fn_constr0 <- set_constraint(fit_med)
out1l <- ci_bound_wn_i(i = 1,
npar = 5,
sem_out = fit_med,
f_constr = fn_constr0,
which = "lbound")
# Print the output
out1l
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.