Create a Hierarchical Model
The underlying theory about intelligence states that a general IQ factor predicts performance on the verbal comprehension, working memory, and perceptual organization subfactors. Therefore, you should create a hierarchical model that demonstrates that relationship between the second order latent variable and the first layer of latent variables.
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
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Update the three-factor model to a hierarchical model
wais.model3 <- 'verbalcomp =~ vocab + simil + inform + compreh
workingmemory =~ arith + digspan + lnseq
perceptorg =~ piccomp + block + matrixreason + digsym + symbolsearch
simil ~~ inform
____'