ComeçarComece de graça

Add Paths to Improve Fit

The three-factor model of the WAIS-III showed poor fit when examining the fit indices. You can use the modification indices to view potential parameter estimates to add to the model to improve fit. Correlated error terms are normal estimates to add, as the variance of the manifest variables on the same factor can be related to each other.

The data has been loaded for you and is called IQdata. You can view the data using head(IQdata).

Este exercício faz parte do curso

Structural Equation Modeling with lavaan in R

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Examine modification indices 
modificationindices(wais.fit, sort = TRUE)

# Update the three-factor model
wais.model2 <- 'verbalcomp =~ vocab + simil + inform + compreh 
workingmemory =~ arith + digspan + lnseq
perceptorg =~ piccomp + block + matrixreason + digsym + symbolsearch
___'
Editar e executar o código