View source: R/nearby_levels.R
ci_order | R Documentation |
semlbci
ObjectsCheck whether the LBCIs in a list of
semlbci
-class of objects are consistent with their
levels of confidence.
ci_order(semlbci_list)
## S3 method for class 'ci_order'
print(x, digits = 3, ...)
semlbci_list |
An object of class |
x |
The output of |
digits |
The number of decimal places in the printout. |
... |
Additional arguments. Not used. |
A ci_order
-class object with a print
method
print.ci_order()
. The number of rows is equal to the
number of
parameters in semlbci_list
, and the columns stores the
confidence limits from the list, ordered according to the
level of confidence.
x
is returned invisibly. Called for its side effect.
print(ci_order)
: The print method of the output of
ci_order()
.
Shu Fai Cheung https://orcid.org/0000-0002-9871-9448
nearby_levels()
, semlbci()
library(lavaan)
mod <-
"
m ~ x
y ~ m
"
fit_med <- sem(mod, simple_med, fixed.x = FALSE)
lbci_fit <- semlbci(fit_med)
lbci_fit_nb <- nearby_levels(lbci_fit,
ciperc_levels = c(-.050, .050))
# Check the order of the confidence bounds.
# A confidence interval with a higher level of confidence
# should enclose a confidence interval with
# a lower level of confidence.
ci_order(lbci_fit_nb)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.