Hi,
I am building an adapted UTAUT2 SEM model in lavaan. What I would like to do is include moderators (age, experience, e.literacy... etc) into the model and am not sure how to do this. Currently, my model looks like this:
______________________
A3 <- "PE_lat =~ PE1 + PE2 + PE3 + PE4 + PE5 + PE6 + PE7 + PE8
EE_lat =~ EE1 + EE2
SI_lat =~ SI1 + SI2
FC_lat =~ FC1 + FC2 + FC3
HM_lat =~ HM1 + HM2
SEff_lat =~ SEH1 + SET1
Barriers1_lat =~ BIR1 + BIR2 + BPI1 + BQC1
Barriers2_lat =~ BRI2 + BPI2 + BTR1 + BTR2
BIR1 ~~ BIR2
BI_lat =~ BI
BI_lat ~ PE_lat + EE_lat + SI_lat + FC_lat + HM_lat + SEff_lat + Barriers1_lat + Barriers2_lat + Age + Experience.code.binary + Gender + e.literacy"
#model cfa
A3.fit <- lavaan::cfa(model = A3, data = X20220421_export_for_R_coded, estimator = "DWLS")
#model fit
summary(A3.fit, standardized = TRUE, fit.measures = TRUE)
____________________________
I would like to test whether
- Observed variables (Age (continuous), Gender (binary), Experience (binary) and e.literacy (ordinal))
- Latent constructs (Barriers1_lat, Barriers2_lat, SEff_lat)
act as
moderators upon my UTAUT2 latent constructs (PE_lat, EE_lat, SI_lat, FC_lat and HM_lat).
I would greatly appreciate your help on this issue!
Thank you,
Dina