Learn R Programming

psycho (version 0.4.91)

analyze.blavaan: Analyze blavaan (SEM or CFA) objects.

Description

Analyze blavaan (SEM or CFA) objects.

Usage

# S3 method for blavaan
analyze(x, CI = 90, standardize = FALSE, ...)

Arguments

x

lavaan object.

CI

Credible interval level.

standardize

Compute standardized coefs.

...

Arguments passed to or from other methods.

Value

output

See Also

https://www.researchgate.net/post/Whats_the_standard_of_fit_indices_in_SEM

Examples

Run this code
# NOT RUN {
library(psycho)
library(lavaan)

model <- " visual  =~ x1 + x2 + x3\ntextual =~ x4 + x5 + x6\nspeed   =~ x7 + x8 + x9 "
x <- lavaan::cfa(model, data = HolzingerSwineford1939)

rez <- analyze(x)
print(rez)
# }

Run the code above in your browser using DataLab