Hi all!
I apologise as this request is somewhat similar to other posts, however I am having trouble applying the answers to my situation. I am looking for the best way to model method factors between positively and negatively worded items. This is a very regular occurrence in scale development. To that end, I wish to model the method factors underlying the positively worded items, and the negatively worded items. To do this, I estimated all error covariances between the positively worded items, and then estimated all error covariances between the negatively worded items. This should estimate the unique variance associated with wording direction. However, when I run this I receive the error:
Warning message:
In lav_model_vcov(lavmodel = lavmodel, lavsamplestats = lavsamplestats, :
lavaan WARNING: could not compute standard errors!
lavaan NOTE: this may be a symptom that the model is not identified.
This is likely because of the large number of covariance estimates. Therefore, what I have seen on other posts is that the best solution is to constrain either one error covariance within each method factor, or to constrain all covariances within each method factor to be equal. The lavaan website offers solutions to constraining estimates. My question would be whether either solution is appropriate and what the best way to go about constraining would be?
Thanks in advance for any help, and I have attached the model specification below and the respective semPlot.
Model <- ' Factor =~ GENAT_1 + GENAT_2 + GENAT_3 + GENAT_4 + GENAT_5 + GENAT_6 + GENAT_7 + GENAT_8 +
GENAT_9_R + GENAT_10_R + GENAT_11_R + GENAT_12_R + GENAT_13_R + GENAT_14_R + GENAT_15_R + GENAT_16_R
# Estimate the error covariances between positively worded items
GENAT_1 ~~ GENAT_2
GENAT_1 ~~ GENAT_3
GENAT_1 ~~ GENAT_4
GENAT_1 ~~ GENAT_5
GENAT_1 ~~ GENAT_6
GENAT_1 ~~ GENAT_7
GENAT_1 ~~ GENAT_8
GENAT_2 ~~ GENAT_3
GENAT_2 ~~ GENAT_4
GENAT_2 ~~ GENAT_5
GENAT_2 ~~ GENAT_6
GENAT_2 ~~ GENAT_7
GENAT_2 ~~ GENAT_8
GENAT_3 ~~ GENAT_4
GENAT_3 ~~ GENAT_5
GENAT_3 ~~ GENAT_6
GENAT_3 ~~ GENAT_7
GENAT_3 ~~ GENAT_8
GENAT_4 ~~ GENAT_5
GENAT_4 ~~ GENAT_6
GENAT_4 ~~ GENAT_7
GENAT_4 ~~ GENAT_8
GENAT_5 ~~ GENAT_6
GENAT_5 ~~ GENAT_7
GENAT_5 ~~ GENAT_8
GENAT_6 ~~ GENAT_7
GENAT_6 ~~ GENAT_8
GENAT_7 ~~ GENAT_8
# Estimate the error covariances between negatively worded items
GENAT_9_R ~~ GENAT_10_R
GENAT_9_R ~~ GENAT_11_R
GENAT_9_R ~~ GENAT_12_R
GENAT_9_R ~~ GENAT_13_R
GENAT_9_R ~~ GENAT_14_R
GENAT_9_R ~~ GENAT_15_R
GENAT_9_R ~~ GENAT_16_R
GENAT_10_R ~~ GENAT_11_R
GENAT_10_R ~~ GENAT_12_R
GENAT_10_R ~~ GENAT_13_R
GENAT_10_R ~~ GENAT_14_R
GENAT_10_R ~~ GENAT_15_R
GENAT_10_R ~~ GENAT_16_R
GENAT_11_R ~~ GENAT_12_R
GENAT_11_R ~~ GENAT_13_R
GENAT_11_R ~~ GENAT_14_R
GENAT_11_R ~~ GENAT_15_R
GENAT_11_R ~~ GENAT_16_R
GENAT_12_R ~~ GENAT_13_R
GENAT_12_R ~~ GENAT_14_R
GENAT_12_R ~~ GENAT_15_R
GENAT_12_R ~~ GENAT_16_R
GENAT_13_R ~~ GENAT_14_R
GENAT_13_R ~~ GENAT_15_R
GENAT_13_R ~~ GENAT_16_R
GENAT_14_R ~~ GENAT_15_R
GENAT_14_R ~~ GENAT_16_R
GENAT_15_R ~~ GENAT_16_R
'
Thanks for any help you can provide