LoslegenKostenlos loslegen

Update the Model

The current model of the WAIS-III indicated a Heywood case between perceptual organization and processing speed. To fix a highly correlated set of latent variables, you should collapse those two variables into one latent variable. You should make a performance variable that combines the manifest variables for the perceptorg and processing latent variables.

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

Diese Übung ist Teil des Kurses

Structural Equation Modeling with lavaan in R

Kurs anzeigen

Anleitung zur Übung

  • Edit the four-factor model to include one performance variable measured by piccomp, block, matrixreason, digsym, and symbolsearch.
  • Use the cfa() function to analyze the model for any new errors.
  • Summarize the model to determine model fit with the standardized solution and fit indices.

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Edit the original model
wais.model <- 'verbalcomp =~ vocab + simil + inform + compreh 
workingmemory =~ arith + digspan + lnseq
perceptorg =~ piccomp + block + matrixreason
processing =~ digsym + symbolsearch'

# Analyze the model and include the model and data argument
wais.fit <- cfa(___)

# Summarize the model
summary(___)
Code bearbeiten und ausführen