I could really use some help figuring out what I'm doing wrong with a simple SEM model that involves two latent variables ('SALIENCE' and 'COMMITMENT') and two observed variables ('dif_score' and 'grade'). Latent variable SALIENCE is endogenous and has four indicators (sal_1, sal_2, sal_3, sal_4). Latent variable COMMITMENT is exogenous and has seven indicators (cmt_1 - cmt_7). I wish to specify three structural paths in all: from COMMITMENT to SALIENCE, and from COMMITMENT to the two observed variables. The problem I'm having is that Stata views my paths from COMMITMENT to the two observed variables to be part of the measurement model (that is, as additional indicators of the latent variable) rather than as paths in the structural model.
Is there a way to specify that simple observed variables should be treated as endogenous outcome variables, and therefore part of the structural model? Whether I use command syntax or the model builder, Stata treats the observed variables the same way, by assuming they're additional indicators of the latent variable COMMITMENT. Any help you can provide will be MUCH appreciated!
Here is my command syntax:
sem (SALIENCE -> sal_1 sal_2 sal_3 sal_4) ///
(COMMITMENT -> cmt_1 cmt_2 cmt_3 cmt_4 cmt_5 cmt_6 cmt_7) ///
(MGR_Salience <- Affective) ///
(dif_score grade <- Affective)
Is there a way to specify that simple observed variables should be treated as endogenous outcome variables, and therefore part of the structural model? Whether I use command syntax or the model builder, Stata treats the observed variables the same way, by assuming they're additional indicators of the latent variable COMMITMENT. Any help you can provide will be MUCH appreciated!
Here is my command syntax:
sem (SALIENCE -> sal_1 sal_2 sal_3 sal_4) ///
(COMMITMENT -> cmt_1 cmt_2 cmt_3 cmt_4 cmt_5 cmt_6 cmt_7) ///
(MGR_Salience <- Affective) ///
(dif_score grade <- Affective)
Comment