Get startedGet started for free

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).

This exercise is part of the course

Structural Equation Modeling with lavaan in R

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# 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
____'
Edit and Run Code