Learn R Programming

lavaan (version 0.5-9)

standardizedSolution: Standardized Solution

Description

Standardized solution of a latent variable model.

Usage

standardizedSolution(object, type = "std.all")

Arguments

object
An object of class lavaan.
type
If "std.lv", the standardized estimates are on the variances of the (continuous) latent variables only. If "std.all", the standardized estimates are based on both the variances of both (continuous) observed and latent variables.

Value

  • A data.frame containing both unstandardized and standardized model parameters.

Examples

Run this code
HS.model <- 'visual  =~ x1 + x2 + x3
              textual =~ x4 + x5 + x6
              speed   =~ x7 + x8 + x9 '

fit <- cfa(HS.model, data=HolzingerSwineford1939)
standardizedSolution(fit)

Run the code above in your browser using DataLab