Diagram the Final Model
To help visualize our new WAIS-III model, we can use the semPlot library to create a picture of the three-factor model. You will want to include labels and shading to accent the strongest paths in the model, which helps visualize the manifest variables that are best at measuring the latent variable.
Diese Übung ist Teil des Kurses
Structural Equation Modeling with lavaan in R
Anleitung zur Übung
- Load the
semPlotlibrary. - Include the standardized loadings as labels with
whatLabelsand shading withwhat. - Shade the diagram in black in the
edge.colorargument.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Load the library
library(___)
# Update the default picture
semPaths(object = wais.fit,
layout = "tree",
rotation = 1,
whatLabels = ___,
edge.label.cex = 1,
what = ___,
edge.color = ___)