How can I create a structural model in CSEM using RStudio with three variables, one mediator, and one moderator?

84 Views Asked by At

I need to create a structural model in Csem. It contains 3 variables: a mediation and a moderator. enter image description hereVisual model:

model = '

#Reflective model 
  jobSatisfaction =~ jobSatisfaction_1 + jobSatisfaction_2 + jobSatisfaction_3 + jobSatisfaction_4 + jobSatisfaction_5 + jobSatisfaction_6
  orgSupport =~ orgSupport_1 + orgSupport_2 + orgSupport_3 + orgSupport_4 + orgSupport_5 + orgSupport_6 + orgSupport_7 + orgSupport_8
  performance =~ performance_1 + performance_2 + performance_3 + performance_4

#Structural model
jobSatisfaction ~ orgSupport

performance ~ orgSupport + jobSatisfaction  #+ orgSupport.jobSatisfaction

'
# Return summary
summarize(out)
#fail
assess(out)
0

There are 0 best solutions below