I am PhD student and I am new to SEM. I am working on the estimation of the model with ordinal indicator variables. The indicators come from a survey responses measured with 7-point Likert scales.
1) Is Chi-square a feasible model fit statistic when the DWLS/WLSMV estimator is used?
3) If I am using 7-point scale for my variables, can I use WLS but treat my data as continuous instead of declaring it ordinal?
5) Can I retrieve any construct validity measures for the latent variables while running SEM?
6) I would want to make results reproducible. In my case I cannot use covariance matrix for ordered data. Is it sufficient to report polychronic correlation matrix only?
7) How should I treat significant co-variances between indicators? significant/not significant thresholds?
model_v9<-'
lq8=~q8
ITPerformance=~q13a +q13b
ITMetrics =~ q20a+q20b+q22a+q20d+q22b
BMetrics=~q20f+q20g+q20h+q20k+q20e+q20f+q20j
Trust =~ q24a+q24b + q24c +q24d
Shunder=~q25a + q25b+ q25c +q25d
ITSC=~q14b+q14c+q14d+q14e+q14f+q14g+q14h+q14i+q14j+q14k
ITPerformance~ITMetrics+FTECat+q9a+lq8+ProfitNo+q11
Trust ~ITPerformance+FTECat+q9a+lq8+ProfitNo+q11
#altern model1 (cannot be estimated with WLSMV and DWLS)
#ITPerformance~ITMetrics+FTECat+q9a+lq8+ProfitNo+q11
#Trust ~ITPerformance+ITMetrics+FTECat+q9a+lq8+ProfitNo+q11
Shunder~Trust +BMetrics+FTECat+q9a+lq8+ProfitNo+q11
ITSC~Shunder+FTECat+q9a+lq8+ProfitNo+q11
#altern model2
#ITPerformance~~ITMetrics
#Trust ~ITPerformance+ITMetrics+FTECat+q9a+lq8+ProfitNo+q11
BMetrics~~ITMetrics
q20a~~q20b
q20a~~q22a
q20b~~q22b
q20g~~q20f
q20g~~q20h
q20h~~q20f
q20e~~q20f
q20j~~q20k
q20j~~q20f
q14f~~q14j
q14f~~q14i
q14f~~q14d
q14d~~q14j
q14k~~q14j
q14d~~q14b
q25a~~q25b
q25b~~q25c
q24a~~q24b
q24c~~q24b
'
fit <- sem(model_v9, data=data,estimator="WLSMV",
ordered=c("ProdServ","FTECat","ProfitNo","q13a","q13b",
"q20a","q20b","q22a",
"q20f","q20g","q20k",
"q24a","q24b","q24c","q24d",
"q14d","q14f","q14i","q14j","q14k",
"q25a","q25b","q25c","q25d",
"q9a","q13c") )