MulaiMulai sekarang secara gratis

Create a Direct Path

In this exercise, edit the epi.model to include a direct regression path between lying and neuroticism. We might expect that a person's level of neuroticism would predict their level of lying.

You can edit the model specification provided to include this path, and you can use the same model specification code that you might use when defining a regression in lm.

Latihan ini adalah bagian dari kursus

Structural Equation Modeling with lavaan in R

Lihat Kursus

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

# Load the library and data
library(psych)
data(epi)

# Specify a three-factor model where lying is predicted by neuroticism
epi.model <- 'extraversion =~ V1 + V3 + V5 + V8
neuroticism =~ V2 + V4 + V7 + V9
lying =~ V6 + V12 + V18 + V24
___'
Edit dan Jalankan Kode