MODELO 1: INSEGURIDAD LABORAL ETC
mod <- '
#variables latentes
ghq =~ GHQ_1 + GHQ_2 + GHQ_3 + GHQ_4 + GHQ_5 + GHQ_6 + GHQ_7 + GHQ_8 + GHQ_9 + GHQ_10 + GHQ_11 + GHQ_12
jis =~ JIS_1 + JIS_2 + JIS_3 + JIS_4
soc =~ Social_Support
#"interacción latente"
intjis =~ socxjis1 + socxjis2 + socxjis3 + socxjis4
#regresion con efectos interactivos
ghq ~ jis + soc + intjis
#covarianzas libres entre variables latentes
jis ~~ soc
#covarianzas libres entre variables latentes e "interacciones latentes"
intjis ~~ jis
intjis ~~ soc
'
fit <- lavaan::sem(mod,df,estimator="MLR")
lavaan::fitMeasures(fit, c("chisq.scaled","df","cfi.scaled","tli.scaled","rmsea.scaled","rmsea.ci.lower.scaled","rmsea.ci.upper.scaled","srmr","aic","bic"))
## chisq.scaled df cfi.scaled
## 625.719 184.000 0.875
## tli.scaled rmsea.scaled rmsea.ci.lower.scaled
## 0.858 0.077 0.071
## rmsea.ci.upper.scaled srmr aic
## 0.084 0.066 30425.124
## bic
## 30613.074
lavaan::standardizedSolution(fit)
## lhs op rhs est.std se z pvalue ci.lower
## 1 ghq =~ GHQ_1 0.505 0.041 12.17 0.000 0.423
## 2 ghq =~ GHQ_2 -0.489 0.047 -10.38 0.000 -0.581
## 3 ghq =~ GHQ_3 0.448 0.054 8.36 0.000 0.343
## 4 ghq =~ GHQ_4 0.554 0.053 10.53 0.000 0.451
## 5 ghq =~ GHQ_5 -0.682 0.037 -18.56 0.000 -0.754
## 6 ghq =~ GHQ_6 -0.689 0.041 -17.02 0.000 -0.769
## 7 ghq =~ GHQ_7 0.637 0.036 17.46 0.000 0.565
## 8 ghq =~ GHQ_8 0.560 0.047 11.86 0.000 0.468
## 9 ghq =~ GHQ_9 -0.716 0.034 -21.03 0.000 -0.782
## 10 ghq =~ GHQ_10 -0.644 0.055 -11.66 0.000 -0.752
## 11 ghq =~ GHQ_11 -0.530 0.062 -8.57 0.000 -0.651
## 12 ghq =~ GHQ_12 0.672 0.035 19.13 0.000 0.603
## 13 jis =~ JIS_1 0.872 0.023 38.16 0.000 0.827
## 14 jis =~ JIS_2 -0.640 0.050 -12.82 0.000 -0.737
## 15 jis =~ JIS_3 0.829 0.027 31.15 0.000 0.777
## 16 jis =~ JIS_4 0.923 0.020 47.02 0.000 0.885
## 17 soc =~ Social_Support 1.000 0.000 NA NA 1.000
## 18 intjis =~ socxjis1 0.945 0.026 36.41 0.000 0.894
## 19 intjis =~ socxjis2 0.402 0.328 1.22 0.221 -0.241
## 20 intjis =~ socxjis3 0.859 0.102 8.44 0.000 0.659
## 21 intjis =~ socxjis4 0.959 0.016 61.08 0.000 0.928
## 22 ghq ~ jis -0.218 0.049 -4.41 0.000 -0.315
## 23 ghq ~ soc 0.338 0.071 4.79 0.000 0.200
## 24 ghq ~ intjis 0.269 0.097 2.77 0.006 0.078
## 25 jis ~~ soc -0.094 0.043 -2.18 0.029 -0.179
## 26 jis ~~ intjis 0.023 0.058 0.40 0.689 -0.091
## 27 soc ~~ intjis -0.556 0.186 -2.99 0.003 -0.921
## 28 GHQ_1 ~~ GHQ_1 0.745 0.042 17.82 0.000 0.663
## 29 GHQ_2 ~~ GHQ_2 0.761 0.046 16.50 0.000 0.670
## 30 GHQ_3 ~~ GHQ_3 0.799 0.048 16.64 0.000 0.705
## 31 GHQ_4 ~~ GHQ_4 0.693 0.058 11.90 0.000 0.579
## 32 GHQ_5 ~~ GHQ_5 0.535 0.050 10.67 0.000 0.437
## 33 GHQ_6 ~~ GHQ_6 0.525 0.056 9.40 0.000 0.415
## 34 GHQ_7 ~~ GHQ_7 0.595 0.046 12.81 0.000 0.504
## 35 GHQ_8 ~~ GHQ_8 0.686 0.053 12.97 0.000 0.582
## 36 GHQ_9 ~~ GHQ_9 0.488 0.049 10.02 0.000 0.393
## 37 GHQ_10 ~~ GHQ_10 0.586 0.071 8.24 0.000 0.446
## 38 GHQ_11 ~~ GHQ_11 0.719 0.065 10.99 0.000 0.591
## 39 GHQ_12 ~~ GHQ_12 0.549 0.047 11.63 0.000 0.456
## 40 JIS_1 ~~ JIS_1 0.240 0.040 6.03 0.000 0.162
## 41 JIS_2 ~~ JIS_2 0.591 0.064 9.26 0.000 0.466
## 42 JIS_3 ~~ JIS_3 0.313 0.044 7.09 0.000 0.226
## 43 JIS_4 ~~ JIS_4 0.148 0.036 4.09 0.000 0.077
## 44 Social_Support ~~ Social_Support 0.000 0.000 NA NA 0.000
## 45 socxjis1 ~~ socxjis1 0.106 0.049 2.16 0.030 0.010
## 46 socxjis2 ~~ socxjis2 0.839 0.264 3.18 0.001 0.322
## 47 socxjis3 ~~ socxjis3 0.263 0.175 1.51 0.132 -0.079
## 48 socxjis4 ~~ socxjis4 0.080 0.030 2.66 0.008 0.021
## 49 ghq ~~ ghq 0.856 0.036 23.86 0.000 0.786
## 50 jis ~~ jis 1.000 0.000 NA NA 1.000
## 51 soc ~~ soc 1.000 0.000 NA NA 1.000
## 52 intjis ~~ intjis 1.000 0.000 NA NA 1.000
## ci.upper
## 1 0.586
## 2 -0.397
## 3 0.553
## 4 0.657
## 5 -0.610
## 6 -0.610
## 7 0.708
## 8 0.653
## 9 -0.649
## 10 -0.536
## 11 -0.409
## 12 0.741
## 13 0.916
## 14 -0.542
## 15 0.881
## 16 0.961
## 17 1.000
## 18 0.996
## 19 1.045
## 20 1.058
## 21 0.990
## 22 -0.121
## 23 0.477
## 24 0.459
## 25 -0.010
## 26 0.138
## 27 -0.191
## 28 0.827
## 29 0.851
## 30 0.893
## 31 0.807
## 32 0.633
## 33 0.634
## 34 0.686
## 35 0.790
## 36 0.583
## 37 0.725
## 38 0.848
## 39 0.641
## 40 0.318
## 41 0.716
## 42 0.399
## 43 0.219
## 44 0.000
## 45 0.203
## 46 1.355
## 47 0.605
## 48 0.139
## 49 0.926
## 50 1.000
## 51 1.000
## 52 1.000
MODELO 2: AMENAZA FINANCIERA ETC
mod <- '
#variables latentes
ghq =~ GHQ_1 + GHQ_2 + GHQ_3 + GHQ_4 + GHQ_5 + GHQ_6 + GHQ_7 + GHQ_8 + GHQ_9 + GHQ_10 + GHQ_11 + GHQ_12
fts =~ FTS_1 + FTS_2 + FTS_3 + FTS_4 + FTS_5 + FTS_6
soc =~ Social_Support
#"interacción latente"
intfts =~ socxfts1 + socxfts2 + socxfts3 + socxfts4 + socxfts5 + socxfts6
#regresion con efectos interactivos
ghq ~ fts + soc + intfts
#covarianzas libres entre variables latentes
fts ~~ soc
#covarianzas libres entre variables latentes e "interacciones latentes"
intfts ~~ fts
intfts ~~ soc
'
fit <- lavaan::sem(mod,df,estimator="MLR")
lavaan::fitMeasures(fit, c("chisq.scaled","df","cfi.scaled","tli.scaled","rmsea.scaled","rmsea.ci.lower.scaled","rmsea.ci.upper.scaled","srmr","aic","bic"))
## chisq.scaled df cfi.scaled
## 1026.505 270.000 0.928
## tli.scaled rmsea.scaled rmsea.ci.lower.scaled
## 0.920 0.069 0.065
## rmsea.ci.upper.scaled srmr aic
## 0.073 0.055 51274.530
## bic
## 51515.437
lavaan::standardizedSolution(fit)
## lhs op rhs est.std se z pvalue ci.lower
## 1 ghq =~ GHQ_1 0.546 0.036 15.294 0.000 0.476
## 2 ghq =~ GHQ_2 -0.477 0.039 -12.232 0.000 -0.554
## 3 ghq =~ GHQ_3 0.504 0.039 12.908 0.000 0.428
## 4 ghq =~ GHQ_4 0.608 0.036 16.886 0.000 0.538
## 5 ghq =~ GHQ_5 -0.680 0.029 -23.209 0.000 -0.738
## 6 ghq =~ GHQ_6 -0.689 0.035 -19.451 0.000 -0.758
## 7 ghq =~ GHQ_7 0.645 0.029 22.374 0.000 0.588
## 8 ghq =~ GHQ_8 0.636 0.033 19.123 0.000 0.571
## 9 ghq =~ GHQ_9 -0.722 0.027 -27.197 0.000 -0.774
## 10 ghq =~ GHQ_10 -0.695 0.039 -17.629 0.000 -0.773
## 11 ghq =~ GHQ_11 -0.619 0.039 -16.050 0.000 -0.695
## 12 ghq =~ GHQ_12 0.717 0.023 30.748 0.000 0.671
## 13 fts =~ FTS_1 0.836 0.025 33.261 0.000 0.786
## 14 fts =~ FTS_2 0.950 0.009 110.757 0.000 0.933
## 15 fts =~ FTS_3 0.944 0.009 100.403 0.000 0.926
## 16 fts =~ FTS_4 0.682 0.028 24.653 0.000 0.628
## 17 fts =~ FTS_5 0.667 0.029 22.834 0.000 0.610
## 18 fts =~ FTS_6 0.694 0.023 29.935 0.000 0.649
## 19 soc =~ Social_Support 1.000 0.000 NA NA 1.000
## 20 intfts =~ socxfts1 0.934 0.036 25.618 0.000 0.863
## 21 intfts =~ socxfts2 0.969 0.017 55.772 0.000 0.935
## 22 intfts =~ socxfts3 0.951 0.030 31.921 0.000 0.892
## 23 intfts =~ socxfts4 0.913 0.048 19.121 0.000 0.820
## 24 intfts =~ socxfts5 0.883 0.063 13.998 0.000 0.759
## 25 intfts =~ socxfts6 0.715 0.074 9.689 0.000 0.571
## 26 ghq ~ fts -0.318 0.043 -7.462 0.000 -0.402
## 27 ghq ~ soc 0.224 0.069 3.242 0.001 0.088
## 28 ghq ~ intfts 0.116 0.099 1.167 0.243 -0.079
## 29 fts ~~ soc -0.104 0.043 -2.420 0.016 -0.188
## 30 fts ~~ intfts 0.003 0.069 0.046 0.963 -0.133
## 31 soc ~~ intfts -0.420 0.200 -2.095 0.036 -0.813
## 32 GHQ_1 ~~ GHQ_1 0.701 0.039 17.958 0.000 0.625
## 33 GHQ_2 ~~ GHQ_2 0.772 0.037 20.757 0.000 0.699
## 34 GHQ_3 ~~ GHQ_3 0.746 0.039 18.919 0.000 0.668
## 35 GHQ_4 ~~ GHQ_4 0.630 0.044 14.373 0.000 0.544
## 36 GHQ_5 ~~ GHQ_5 0.537 0.040 13.474 0.000 0.459
## 37 GHQ_6 ~~ GHQ_6 0.525 0.049 10.760 0.000 0.430
## 38 GHQ_7 ~~ GHQ_7 0.585 0.037 15.742 0.000 0.512
## 39 GHQ_8 ~~ GHQ_8 0.595 0.042 14.049 0.000 0.512
## 40 GHQ_9 ~~ GHQ_9 0.479 0.038 12.508 0.000 0.404
## 41 GHQ_10 ~~ GHQ_10 0.516 0.055 9.409 0.000 0.409
## 42 GHQ_11 ~~ GHQ_11 0.616 0.048 12.891 0.000 0.523
## 43 GHQ_12 ~~ GHQ_12 0.486 0.033 14.564 0.000 0.421
## 44 FTS_1 ~~ FTS_1 0.302 0.042 7.192 0.000 0.220
## 45 FTS_2 ~~ FTS_2 0.097 0.016 5.971 0.000 0.065
## 46 FTS_3 ~~ FTS_3 0.109 0.018 6.123 0.000 0.074
## 47 FTS_4 ~~ FTS_4 0.534 0.038 14.140 0.000 0.460
## 48 FTS_5 ~~ FTS_5 0.555 0.039 14.244 0.000 0.479
## 49 FTS_6 ~~ FTS_6 0.518 0.032 16.069 0.000 0.455
## 50 Social_Support ~~ Social_Support 0.000 0.000 NA NA 0.000
## 51 socxfts1 ~~ socxfts1 0.127 0.068 1.863 0.062 -0.007
## 52 socxfts2 ~~ socxfts2 0.061 0.034 1.820 0.069 -0.005
## 53 socxfts3 ~~ socxfts3 0.096 0.057 1.700 0.089 -0.015
## 54 socxfts4 ~~ socxfts4 0.166 0.087 1.896 0.058 -0.006
## 55 socxfts5 ~~ socxfts5 0.221 0.111 1.985 0.047 0.003
## 56 socxfts6 ~~ socxfts6 0.488 0.106 4.622 0.000 0.281
## 57 ghq ~~ ghq 0.842 0.034 24.621 0.000 0.775
## 58 fts ~~ fts 1.000 0.000 NA NA 1.000
## 59 soc ~~ soc 1.000 0.000 NA NA 1.000
## 60 intfts ~~ intfts 1.000 0.000 NA NA 1.000
## ci.upper
## 1 0.617
## 2 -0.401
## 3 0.581
## 4 0.679
## 5 -0.623
## 6 -0.620
## 7 0.701
## 8 0.702
## 9 -0.670
## 10 -0.618
## 11 -0.544
## 12 0.762
## 13 0.885
## 14 0.967
## 15 0.963
## 16 0.737
## 17 0.724
## 18 0.740
## 19 1.000
## 20 1.006
## 21 1.003
## 22 1.009
## 23 1.007
## 24 1.006
## 25 0.860
## 26 -0.235
## 27 0.359
## 28 0.310
## 29 -0.020
## 30 0.139
## 31 -0.027
## 32 0.778
## 33 0.845
## 34 0.823
## 35 0.716
## 36 0.615
## 37 0.621
## 38 0.657
## 39 0.678
## 40 0.554
## 41 0.624
## 42 0.710
## 43 0.552
## 44 0.384
## 45 0.129
## 46 0.144
## 47 0.608
## 48 0.631
## 49 0.581
## 50 0.000
## 51 0.261
## 52 0.127
## 53 0.207
## 54 0.337
## 55 0.439
## 56 0.695
## 57 0.909
## 58 1.000
## 59 1.000
## 60 1.000
MODELO 3: COTOTO CONTUTTI
mod <- '
#variables latentes
ghq =~ GHQ_1 + GHQ_2 + GHQ_3 + GHQ_4 + GHQ_5 + GHQ_6 + GHQ_7 + GHQ_8 + GHQ_9 + GHQ_10 + GHQ_11 + GHQ_12
jis =~ JIS_1 + JIS_2 + JIS_3 + JIS_4
fts =~ FTS_1 + FTS_2 + FTS_3 + FTS_4 + FTS_5 + FTS_6
soc =~ Social_Support
#"interacciones latentes"
intjis =~ socxjis1 + socxjis2 + socxjis3 + socxjis4
intfts =~ socxfts1 + socxfts2 + socxfts3 + socxfts4 + socxfts5 + socxfts6
#regresion con efectos interactivos
ghq ~ jis + fts + soc + intjis + intfts
#covarianzas libres entre variables latentes
fts ~~ soc
jis ~~ soc
fts ~~ jis
#covarianzas libres entre variables latentes e "interacciones latentes"
intjis ~~ jis
intjis ~~ soc
intjis ~~ fts
intfts ~~ jis
intfts ~~ soc
intfts ~~ fts
#covarianzas libres entre "interacciones latentes"
intjis ~~ intfts
'
fit <- lavaan::sem(mod,df,estimator="MLR")
lavaan::fitMeasures(fit, c("chisq.scaled","df","cfi.scaled","tli.scaled","rmsea.scaled","rmsea.ci.lower.scaled","rmsea.ci.upper.scaled","srmr","aic","bic"))
## chisq.scaled df cfi.scaled
## 1611.766 481.000 0.925
## tli.scaled rmsea.scaled rmsea.ci.lower.scaled
## 0.918 0.076 0.073
## rmsea.ci.upper.scaled srmr aic
## 0.080 0.067 51288.421
## bic
## 51608.336
lavaan::standardizedSolution(fit)
## lhs op rhs est.std se z pvalue ci.lower
## 1 ghq =~ GHQ_1 0.504 0.041 12.181 0.000 0.423
## 2 ghq =~ GHQ_2 -0.493 0.047 -10.511 0.000 -0.585
## 3 ghq =~ GHQ_3 0.445 0.054 8.258 0.000 0.339
## 4 ghq =~ GHQ_4 0.551 0.053 10.393 0.000 0.447
## 5 ghq =~ GHQ_5 -0.684 0.036 -18.839 0.000 -0.755
## 6 ghq =~ GHQ_6 -0.691 0.040 -17.198 0.000 -0.769
## 7 ghq =~ GHQ_7 0.635 0.037 17.342 0.000 0.563
## 8 ghq =~ GHQ_8 0.560 0.047 11.802 0.000 0.467
## 9 ghq =~ GHQ_9 -0.717 0.034 -21.282 0.000 -0.783
## 10 ghq =~ GHQ_10 -0.645 0.055 -11.822 0.000 -0.752
## 11 ghq =~ GHQ_11 -0.529 0.062 -8.574 0.000 -0.650
## 12 ghq =~ GHQ_12 0.669 0.035 19.029 0.000 0.600
## 13 jis =~ JIS_1 0.876 0.021 41.367 0.000 0.834
## 14 jis =~ JIS_2 -0.643 0.049 -13.071 0.000 -0.740
## 15 jis =~ JIS_3 0.829 0.027 31.120 0.000 0.776
## 16 jis =~ JIS_4 0.918 0.019 49.304 0.000 0.882
## 17 fts =~ FTS_1 0.820 0.032 25.391 0.000 0.757
## 18 fts =~ FTS_2 0.959 0.010 95.644 0.000 0.939
## 19 fts =~ FTS_3 0.956 0.008 122.867 0.000 0.941
## 20 fts =~ FTS_4 0.636 0.036 17.853 0.000 0.566
## 21 fts =~ FTS_5 0.594 0.041 14.459 0.000 0.514
## 22 fts =~ FTS_6 0.687 0.029 23.815 0.000 0.631
## 23 soc =~ Social_Support 1.000 0.000 NA NA 1.000
## 24 intjis =~ socxjis1 0.945 0.022 42.831 0.000 0.902
## 25 intjis =~ socxjis2 0.431 0.327 1.317 0.188 -0.210
## 26 intjis =~ socxjis3 0.861 0.100 8.584 0.000 0.664
## 27 intjis =~ socxjis4 0.955 0.015 65.042 0.000 0.927
## 28 intfts =~ socxfts1 0.954 0.030 31.625 0.000 0.894
## 29 intfts =~ socxfts2 0.989 0.007 149.127 0.000 0.976
## 30 intfts =~ socxfts3 0.985 0.008 123.691 0.000 0.970
## 31 intfts =~ socxfts4 0.927 0.046 20.220 0.000 0.837
## 32 intfts =~ socxfts5 0.886 0.071 12.500 0.000 0.747
## 33 intfts =~ socxfts6 0.795 0.073 10.925 0.000 0.652
## 34 ghq ~ jis -0.107 0.076 -1.413 0.158 -0.255
## 35 ghq ~ fts -0.186 0.077 -2.406 0.016 -0.337
## 36 ghq ~ soc 0.303 0.073 4.161 0.000 0.160
## 37 ghq ~ intjis 0.313 0.143 2.191 0.028 0.033
## 38 ghq ~ intfts -0.081 0.125 -0.650 0.516 -0.325
## 39 fts ~~ soc -0.127 0.049 -2.601 0.009 -0.223
## 40 jis ~~ soc -0.094 0.043 -2.183 0.029 -0.178
## 41 jis ~~ fts 0.621 0.038 16.206 0.000 0.546
## 42 jis ~~ intjis 0.023 0.058 0.390 0.696 -0.091
## 43 soc ~~ intjis -0.559 0.187 -2.988 0.003 -0.926
## 44 fts ~~ intjis -0.003 0.078 -0.036 0.972 -0.155
## 45 jis ~~ intfts -0.011 0.060 -0.183 0.854 -0.128
## 46 soc ~~ intfts -0.598 0.169 -3.548 0.000 -0.929
## 47 fts ~~ intfts 0.023 0.076 0.306 0.759 -0.126
## 48 intjis ~~ intfts 0.836 0.097 8.604 0.000 0.646
## 49 GHQ_1 ~~ GHQ_1 0.746 0.042 17.847 0.000 0.664
## 50 GHQ_2 ~~ GHQ_2 0.757 0.046 16.390 0.000 0.667
## 51 GHQ_3 ~~ GHQ_3 0.802 0.048 16.733 0.000 0.708
## 52 GHQ_4 ~~ GHQ_4 0.697 0.058 11.932 0.000 0.582
## 53 GHQ_5 ~~ GHQ_5 0.532 0.050 10.698 0.000 0.434
## 54 GHQ_6 ~~ GHQ_6 0.523 0.055 9.430 0.000 0.414
## 55 GHQ_7 ~~ GHQ_7 0.597 0.046 12.865 0.000 0.506
## 56 GHQ_8 ~~ GHQ_8 0.687 0.053 12.939 0.000 0.583
## 57 GHQ_9 ~~ GHQ_9 0.486 0.048 10.069 0.000 0.392
## 58 GHQ_10 ~~ GHQ_10 0.584 0.070 8.288 0.000 0.446
## 59 GHQ_11 ~~ GHQ_11 0.720 0.065 11.011 0.000 0.592
## 60 GHQ_12 ~~ GHQ_12 0.552 0.047 11.723 0.000 0.460
## 61 JIS_1 ~~ JIS_1 0.233 0.037 6.281 0.000 0.160
## 62 JIS_2 ~~ JIS_2 0.586 0.063 9.250 0.000 0.462
## 63 JIS_3 ~~ JIS_3 0.313 0.044 7.102 0.000 0.227
## 64 JIS_4 ~~ JIS_4 0.156 0.034 4.573 0.000 0.089
## 65 FTS_1 ~~ FTS_1 0.327 0.053 6.170 0.000 0.223
## 66 FTS_2 ~~ FTS_2 0.081 0.019 4.208 0.000 0.043
## 67 FTS_3 ~~ FTS_3 0.086 0.015 5.802 0.000 0.057
## 68 FTS_4 ~~ FTS_4 0.595 0.045 13.125 0.000 0.506
## 69 FTS_5 ~~ FTS_5 0.647 0.049 13.258 0.000 0.551
## 70 FTS_6 ~~ FTS_6 0.528 0.040 13.317 0.000 0.450
## 71 Social_Support ~~ Social_Support 0.000 0.000 NA NA 0.000
## 72 socxjis1 ~~ socxjis1 0.107 0.042 2.567 0.010 0.025
## 73 socxjis2 ~~ socxjis2 0.814 0.282 2.884 0.004 0.261
## 74 socxjis3 ~~ socxjis3 0.259 0.173 1.501 0.133 -0.079
## 75 socxjis4 ~~ socxjis4 0.087 0.028 3.114 0.002 0.032
## 76 socxfts1 ~~ socxfts1 0.091 0.058 1.577 0.115 -0.022
## 77 socxfts2 ~~ socxfts2 0.021 0.013 1.597 0.110 -0.005
## 78 socxfts3 ~~ socxfts3 0.029 0.016 1.838 0.066 -0.002
## 79 socxfts4 ~~ socxfts4 0.141 0.085 1.663 0.096 -0.025
## 80 socxfts5 ~~ socxfts5 0.215 0.126 1.715 0.086 -0.031
## 81 socxfts6 ~~ socxfts6 0.368 0.116 3.180 0.001 0.141
## 82 ghq ~~ ghq 0.832 0.036 23.418 0.000 0.763
## 83 jis ~~ jis 1.000 0.000 NA NA 1.000
## 84 fts ~~ fts 1.000 0.000 NA NA 1.000
## 85 soc ~~ soc 1.000 0.000 NA NA 1.000
## 86 intjis ~~ intjis 1.000 0.000 NA NA 1.000
## 87 intfts ~~ intfts 1.000 0.000 NA NA 1.000
## ci.upper
## 1 0.586
## 2 -0.401
## 3 0.550
## 4 0.655
## 5 -0.613
## 6 -0.612
## 7 0.706
## 8 0.653
## 9 -0.651
## 10 -0.538
## 11 -0.408
## 12 0.738
## 13 0.917
## 14 -0.547
## 15 0.881
## 16 0.955
## 17 0.884
## 18 0.978
## 19 0.971
## 20 0.706
## 21 0.675
## 22 0.744
## 23 1.000
## 24 0.988
## 25 1.073
## 26 1.057
## 27 0.984
## 28 1.013
## 29 1.002
## 30 1.001
## 31 1.017
## 32 1.025
## 33 0.938
## 34 0.041
## 35 -0.034
## 36 0.445
## 37 0.592
## 38 0.163
## 39 -0.031
## 40 -0.010
## 41 0.697
## 42 0.137
## 43 -0.192
## 44 0.149
## 45 0.106
## 46 -0.268
## 47 0.173
## 48 1.027
## 49 0.827
## 50 0.848
## 51 0.896
## 52 0.811
## 53 0.629
## 54 0.632
## 55 0.688
## 56 0.791
## 57 0.581
## 58 0.722
## 59 0.848
## 60 0.644
## 61 0.306
## 62 0.710
## 63 0.400
## 64 0.224
## 65 0.431
## 66 0.119
## 67 0.115
## 68 0.684
## 69 0.743
## 70 0.606
## 71 0.000
## 72 0.189
## 73 1.367
## 74 0.597
## 75 0.142
## 76 0.203
## 77 0.047
## 78 0.060
## 79 0.308
## 80 0.461
## 81 0.595
## 82 0.902
## 83 1.000
## 84 1.000
## 85 1.000
## 86 1.000
## 87 1.000