Capture, colorise, and emit console text
colorize_output.Rd
Capture, colorise, and emit console text
Usage
colorize_output(
expr,
positive = MODSEM_COLORS$positive,
negative = MODSEM_COLORS$negative,
true = MODSEM_COLORS$true,
false = MODSEM_COLORS$false,
nan = MODSEM_COLORS$nan,
na = MODSEM_COLORS$na,
inf = MODSEM_COLORS$inf,
string = MODSEM_COLORS$string,
split = FALSE,
append = "\n"
)
Arguments
- expr
Expression or object with output which should be colorized.
- positive
color of positive numbers.
- negative
color of negative numbers.
- true
color of
TRUE
.- false
color of
FALSE
.- nan
color of
NaN
.- na
color of
NA
.- inf
color of
-Inf
andInf
.- string
color of quoted strings.
- split
Should output be splitted? If
TRUE
the output is printed normally (in real time) with no colorization, and the colored output is printed after the code has finished executing.- append
String appended after the colored output (default `\n`).
Examples
set_modsem_colors(positive = "red3",
negative = "red3",
true = "darkgreen",
false = "red3",
na = "purple",
string = "darkgreen")
#> [1] TRUE
m1 <- "
# Outer Model
X =~ x1 + x2 + x3
Z =~ z1 + z2 + z3
Y =~ y1 + y2 + y3
# Inner Model
Y ~ X + Z + X:Z
"
est <- modsem(m1, data = oneInt)
colorize_output(summary(est))
#> Estimating baseline model (H0)
#> modsem (version 1.0.13, approach = dblcent):
#>
#> Interaction Model Fit Measures (H1):
#> Loglikelihood -26807.61
#> Akaike (AIC) 53735.22
#> Bayesian (BIC) 54071.28
#> Chi-square 122.92
#> Degrees of Freedom 111
#> P-value (Chi-square) 0.207
#> RMSEA 0.007
#> CFI 1.000
#> SRMR 0.008
#>
#> Fit Measures for Baseline Model (H0):
#> Loglikelihood -27137.74
#> Akaike (AIC) 54393.48
#> Bayesian (BIC) 54723.93
#> Chi-square 783.18
#> Degrees of Freedom 112
#> P-value (Chi-square) 0.000
#> RMSEA 0.055
#> CFI 0.987
#> SRMR 0.141
#>
#> Comparative Fit to H0 (LRT test):
#> Chi-square diff 660.257
#> Degrees of freedom diff 1
#> P-value (LRT) 0.000
#>
#> R-Squared Interaction Model (H1):
#> Y 0.602
#> R-Squared Baseline Model (H0):
#> Y 0.397
#> R-Squared Change (H1 - H0):
#> Y 0.204
#>
#> lavaan 0.6-19 ended normally after 159 iterations
#>
#> Estimator ML
#> Optimization method NLMINB
#> Number of model parameters 60
#>
#> Number of observations 2000
#>
#> Model Test User Model:
#>
#> Test statistic 122.924
#> Degrees of freedom 111
#> P-value (Chi-square) 0.207
#>
#> Parameter Estimates:
#>
#> Standard errors Standard
#> Information Expected
#> Information saturated (h1) model Structured
#>
#> Latent Variables:
#> Estimate Std.Err z-value P(>|z|)
#> X =~
#> x1 1.000
#> x2 0.804 0.013 63.612 0.000
#> x3 0.916 0.014 67.144 0.000
#> Z =~
#> z1 1.000
#> z2 0.812 0.013 64.763 0.000
#> z3 0.882 0.013 67.014 0.000
#> Y =~
#> y1 1.000
#> y2 0.798 0.007 107.428 0.000
#> y3 0.899 0.008 112.453 0.000
#> XZ =~
#> x1z1 1.000
#> x2z1 0.805 0.013 60.636 0.000
#> x3z1 0.877 0.014 62.680 0.000
#> x1z2 0.793 0.013 59.343 0.000
#> x2z2 0.646 0.015 43.672 0.000
#> x3z2 0.706 0.016 44.292 0.000
#> x1z3 0.887 0.014 63.700 0.000
#> x2z3 0.716 0.016 45.645 0.000
#> x3z3 0.781 0.017 45.339 0.000
#>
#> Regressions:
#> Estimate Std.Err z-value P(>|z|)
#> Y ~
#> X 0.675 0.027 25.379 0.000
#> Z 0.561 0.026 21.606 0.000
#> XZ 0.702 0.027 26.360 0.000
#>
#> Covariances:
#> Estimate Std.Err z-value P(>|z|)
#> .x1z1 ~~
#> .x1z2 0.115 0.008 14.802 0.000
#> .x1z3 0.114 0.008 13.947 0.000
#> .x2z1 0.125 0.008 16.095 0.000
#> .x3z1 0.140 0.009 16.135 0.000
#> .x1z2 ~~
#> .x1z3 0.103 0.007 14.675 0.000
#> .x2z2 0.128 0.006 20.850 0.000
#> .x3z2 0.146 0.007 21.243 0.000
#> .x1z3 ~~
#> .x2z3 0.116 0.007 17.818 0.000
#> .x3z3 0.135 0.007 18.335 0.000
#> .x2z1 ~~
#> .x2z2 0.135 0.006 20.905 0.000
#> .x2z3 0.145 0.007 21.145 0.000
#> .x3z1 0.114 0.007 16.058 0.000
#> .x2z2 ~~
#> .x2z3 0.117 0.006 20.419 0.000
#> .x3z2 0.116 0.006 20.586 0.000
#> .x2z3 ~~
#> .x3z3 0.109 0.006 18.059 0.000
#> .x3z1 ~~
#> .x3z2 0.138 0.007 19.331 0.000
#> .x3z3 0.158 0.008 20.269 0.000
#> .x3z2 ~~
#> .x3z3 0.131 0.007 19.958 0.000
#> X ~~
#> Z 0.201 0.024 8.271 0.000
#> XZ 0.016 0.025 0.628 0.530
#> Z ~~
#> XZ 0.062 0.025 2.449 0.014
#>
#> Variances:
#> Estimate Std.Err z-value P(>|z|)
#> .x1 0.160 0.009 17.871 0.000
#> .x2 0.162 0.007 22.969 0.000
#> .x3 0.163 0.008 20.161 0.000
#> .z1 0.168 0.009 18.143 0.000
#> .z2 0.158 0.007 22.264 0.000
#> .z3 0.158 0.008 20.389 0.000
#> .y1 0.159 0.009 17.896 0.000
#> .y2 0.154 0.007 22.640 0.000
#> .y3 0.164 0.008 20.698 0.000
#> .x1z1 0.311 0.014 22.227 0.000
#> .x2z1 0.292 0.011 27.287 0.000
#> .x3z1 0.327 0.012 26.275 0.000
#> .x1z2 0.290 0.011 26.910 0.000
#> .x2z2 0.239 0.008 29.770 0.000
#> .x3z2 0.270 0.009 29.117 0.000
#> .x1z3 0.272 0.012 23.586 0.000
#> .x2z3 0.245 0.009 27.979 0.000
#> .x3z3 0.297 0.011 28.154 0.000
#> X 0.981 0.036 26.895 0.000
#> Z 1.016 0.038 26.856 0.000
#> .Y 0.990 0.038 25.926 0.000
#> XZ 1.045 0.044 24.004 0.000
#>
#>
colorize_output(est) # same as colorize_output(print(est))
#> modsem (version 1.0.13, approach = dblcent):
#> lavaan 0.6-19 ended normally after 159 iterations
#>
#> Estimator ML
#> Optimization method NLMINB
#> Number of model parameters 60
#>
#> Number of observations 2000
#>
#> Model Test User Model:
#>
#> Test statistic 122.924
#> Degrees of freedom 111
#> P-value (Chi-square) 0.207
#>
colorize_output(modsem_inspect(est, what = "coef"))
#> $lambda
#> X Z Y XZ
#> x1 1.000 0.000 0.000 0.000
#> x2 0.804 0.000 0.000 0.000
#> x3 0.916 0.000 0.000 0.000
#> z1 0.000 1.000 0.000 0.000
#> z2 0.000 0.812 0.000 0.000
#> z3 0.000 0.882 0.000 0.000
#> y1 0.000 0.000 1.000 0.000
#> y2 0.000 0.000 0.798 0.000
#> y3 0.000 0.000 0.899 0.000
#> x1z1 0.000 0.000 0.000 1.000
#> x2z1 0.000 0.000 0.000 0.805
#> x3z1 0.000 0.000 0.000 0.877
#> x1z2 0.000 0.000 0.000 0.793
#> x2z2 0.000 0.000 0.000 0.646
#> x3z2 0.000 0.000 0.000 0.706
#> x1z3 0.000 0.000 0.000 0.887
#> x2z3 0.000 0.000 0.000 0.716
#> x3z3 0.000 0.000 0.000 0.781
#>
#> $theta
#> x1 x2 x3 z1 z2 z3 y1 y2 y3 x1z1 x2z1 x3z1
#> x1 0.160
#> x2 0.000 0.162
#> x3 0.000 0.000 0.163
#> z1 0.000 0.000 0.000 0.168
#> z2 0.000 0.000 0.000 0.000 0.158
#> z3 0.000 0.000 0.000 0.000 0.000 0.158
#> y1 0.000 0.000 0.000 0.000 0.000 0.000 0.159
#> y2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.154
#> y3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.164
#> x1z1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.311
#> x2z1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.125 0.292
#> x3z1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.140 0.114 0.327
#> x1z2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.115 0.000 0.000
#> x2z2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.135 0.000
#> x3z2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.138
#> x1z3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.114 0.000 0.000
#> x2z3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.145 0.000
#> x3z3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.158
#> x1z2 x2z2 x3z2 x1z3 x2z3 x3z3
#> x1
#> x2
#> x3
#> z1
#> z2
#> z3
#> y1
#> y2
#> y3
#> x1z1
#> x2z1
#> x3z1
#> x1z2 0.290
#> x2z2 0.128 0.239
#> x3z2 0.146 0.116 0.270
#> x1z3 0.103 0.000 0.000 0.272
#> x2z3 0.000 0.117 0.000 0.116 0.245
#> x3z3 0.000 0.000 0.131 0.135 0.109 0.297
#>
#> $psi
#> X Z Y XZ
#> X 0.981
#> Z 0.201 1.016
#> Y 0.000 0.000 0.990
#> XZ 0.016 0.062 0.000 1.045
#>
#> $beta
#> X Z Y XZ
#> X 0.000 0.000 0 0.000
#> Z 0.000 0.000 0 0.000
#> Y 0.675 0.561 0 0.702
#> XZ 0.000 0.000 0 0.000
#>
#>
# \dontrun{
colorize_output(split = TRUE, {
# Get live (uncolored) output
# And print colored output at the end of execution
est_lms <- modsem(m1, data = oneInt, method = "lms")
summary(est_lms)
})
#>
#> modsem (1.0.13) ended normally after 41 iterations
#>
#> Estimator LMS
#> Optimization method EMA-NLMINB
#> Number of model parameters 31
#>
#> Number of observations 2000
#>
#> Loglikelihood and Information Criteria:
#> Loglikelihood -17493.60
#> Akaike (AIC) 35049.20
#> Bayesian (BIC) 35222.83
#>
#> Numerical Integration:
#> Points of integration (per dim) 24
#> Dimensions 1
#> Total points of integration 24
#>
#> Fit Measures for Baseline Model (H0):
#> Standard
#> Chi-square 17.52
#> Degrees of Freedom (Chi-square) 24
#> P-value (Chi-square) 0.826
#> RMSEA 0.000
#>
#> Loglikelihood -17831.87
#> Akaike (AIC) 35723.75
#> Bayesian (BIC) 35891.78
#>
#> Comparative Fit to H0 (LRT test):
#> Loglikelihood change 338.27
#> Difference test (D) 676.55
#> Degrees of freedom (D) 1
#> P-value (D) 0.000
#>
#> R-Squared Interaction Model (H1):
#> Y 0.599
#> R-Squared Baseline Model (H0):
#> Y 0.395
#> R-Squared Change (H1 - H0):
#> Y 0.204
#>
#> Parameter Estimates:
#> Coefficients unstandardized
#> Information observed
#> Standard errors standard
#>
#> Latent Variables:
#> Estimate Std.Error z.value P(>|z|)
#> X =~
#> x1 1.000
#> x2 0.803 0.013 63.813 0.000
#> x3 0.914 0.014 67.611 0.000
#> Z =~
#> z1 1.000
#> z2 0.810 0.012 65.087 0.000
#> z3 0.881 0.013 67.615 0.000
#> Y =~
#> y1 1.000
#> y2 0.798 0.007 107.550 0.000
#> y3 0.899 0.008 112.586 0.000
#>
#> Regressions:
#> Estimate Std.Error z.value P(>|z|)
#> Y ~
#> X 0.673 0.031 21.688 0.000
#> Z 0.569 0.030 18.734 0.000
#> X:Z 0.718 0.028 25.826 0.000
#>
#> Intercepts:
#> Estimate Std.Error z.value P(>|z|)
#> .x1 1.023 0.024 42.804 0.000
#> .x2 1.216 0.020 60.873 0.000
#> .x3 0.920 0.022 41.400 0.000
#> .z1 1.012 0.024 41.578 0.000
#> .z2 1.206 0.020 59.274 0.000
#> .z3 0.916 0.022 42.067 0.000
#> .y1 1.037 0.033 31.398 0.000
#> .y2 1.220 0.027 45.424 0.000
#> .y3 0.954 0.030 31.806 0.000
#>
#> Covariances:
#> Estimate Std.Error z.value P(>|z|)
#> X ~~
#> Z 0.200 0.024 8.240 0.000
#>
#> Variances:
#> Estimate Std.Error z.value P(>|z|)
#> .x1 0.158 0.009 18.171 0.000
#> .x2 0.162 0.007 23.160 0.000
#> .x3 0.164 0.008 20.758 0.000
#> .z1 0.167 0.009 18.504 0.000
#> .z2 0.160 0.007 22.680 0.000
#> .z3 0.158 0.008 20.779 0.000
#> .y1 0.160 0.009 18.011 0.000
#> .y2 0.154 0.007 22.687 0.000
#> .y3 0.164 0.008 20.683 0.000
#> X 0.981 0.036 26.969 0.000
#> Z 1.017 0.038 26.932 0.000
#> .Y 0.980 0.038 25.938 0.000
#>
#>
#> modsem (1.0.13) ended normally after 41 iterations
#>
#> Estimator LMS
#> Optimization method EMA-NLMINB
#> Number of model parameters 31
#>
#> Number of observations 2000
#>
#> Loglikelihood and Information Criteria:
#> Loglikelihood -17493.60
#> Akaike (AIC) 35049.20
#> Bayesian (BIC) 35222.83
#>
#> Numerical Integration:
#> Points of integration (per dim) 24
#> Dimensions 1
#> Total points of integration 24
#>
#> Fit Measures for Baseline Model (H0):
#> Standard
#> Chi-square 17.52
#> Degrees of Freedom (Chi-square) 24
#> P-value (Chi-square) 0.826
#> RMSEA 0.000
#>
#> Loglikelihood -17831.87
#> Akaike (AIC) 35723.75
#> Bayesian (BIC) 35891.78
#>
#> Comparative Fit to H0 (LRT test):
#> Loglikelihood change 338.27
#> Difference test (D) 676.55
#> Degrees of freedom (D) 1
#> P-value (D) 0.000
#>
#> R-Squared Interaction Model (H1):
#> Y 0.599
#> R-Squared Baseline Model (H0):
#> Y 0.395
#> R-Squared Change (H1 - H0):
#> Y 0.204
#>
#> Parameter Estimates:
#> Coefficients unstandardized
#> Information observed
#> Standard errors standard
#>
#> Latent Variables:
#> Estimate Std.Error z.value P(>|z|)
#> X =~
#> x1 1.000
#> x2 0.803 0.013 63.813 0.000
#> x3 0.914 0.014 67.611 0.000
#> Z =~
#> z1 1.000
#> z2 0.810 0.012 65.087 0.000
#> z3 0.881 0.013 67.615 0.000
#> Y =~
#> y1 1.000
#> y2 0.798 0.007 107.550 0.000
#> y3 0.899 0.008 112.586 0.000
#>
#> Regressions:
#> Estimate Std.Error z.value P(>|z|)
#> Y ~
#> X 0.673 0.031 21.688 0.000
#> Z 0.569 0.030 18.734 0.000
#> X:Z 0.718 0.028 25.826 0.000
#>
#> Intercepts:
#> Estimate Std.Error z.value P(>|z|)
#> .x1 1.023 0.024 42.804 0.000
#> .x2 1.216 0.020 60.873 0.000
#> .x3 0.920 0.022 41.400 0.000
#> .z1 1.012 0.024 41.578 0.000
#> .z2 1.206 0.020 59.274 0.000
#> .z3 0.916 0.022 42.067 0.000
#> .y1 1.037 0.033 31.398 0.000
#> .y2 1.220 0.027 45.424 0.000
#> .y3 0.954 0.030 31.806 0.000
#>
#> Covariances:
#> Estimate Std.Error z.value P(>|z|)
#> X ~~
#> Z 0.200 0.024 8.240 0.000
#>
#> Variances:
#> Estimate Std.Error z.value P(>|z|)
#> .x1 0.158 0.009 18.171 0.000
#> .x2 0.162 0.007 23.160 0.000
#> .x3 0.164 0.008 20.758 0.000
#> .z1 0.167 0.009 18.504 0.000
#> .z2 0.160 0.007 22.680 0.000
#> .z3 0.158 0.008 20.779 0.000
#> .y1 0.160 0.009 18.011 0.000
#> .y2 0.154 0.007 22.687 0.000
#> .y3 0.164 0.008 20.683 0.000
#> X 0.981 0.036 26.969 0.000
#> Z 1.017 0.038 26.932 0.000
#> .Y 0.980 0.038 25.938 0.000
#>
#>
colorize_output(modsem_inspect(est_lms))
#> $N
#> [1] 2000
#>
#> $vcov.all
#> X=~x2 X=~x3 Z=~z2 Z=~z3 Y=~y2 Y=~y3 x1~1 x2~1 x3~1 z1~1 z2~1 z3~1
#> X=~x2 0.000
#> X=~x3 0.000 0.000
#> Z=~z2 0.000 0.000 0.000
#> Z=~z3 0.000 0.000 0.000 0.000
#> Y=~y2 0.000 0.000 0.000 0.000 0.000
#> Y=~y3 0.000 0.000 0.000 0.000 0.000 0.000
#> x1~1 0.000 0.000 0.000 0.000 0.000 0.000 0.001
#> x2~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> x3~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> z1~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.001
#> z2~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> z3~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y1~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y2~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y3~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> x1~~x1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> x2~~x2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> x3~~x3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> z1~~z1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> z2~~z2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> z3~~z3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y1~~y1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y2~~y2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y3~~y3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> X~~X 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> X~~Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Z~~Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~~Y 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~X 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~X:Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y1~1 y2~1 y3~1 x1~~x1 x2~~x2 x3~~x3 z1~~z1 z2~~z2 z3~~z3 y1~~y1
#> X=~x2
#> X=~x3
#> Z=~z2
#> Z=~z3
#> Y=~y2
#> Y=~y3
#> x1~1
#> x2~1
#> x3~1
#> z1~1
#> z2~1
#> z3~1
#> y1~1 0.001
#> y2~1 0.001 0.001
#> y3~1 0.001 0.001 0.001
#> x1~~x1 0.000 0.000 0.000 0.000
#> x2~~x2 0.000 0.000 0.000 0.000 0.000
#> x3~~x3 0.000 0.000 0.000 0.000 0.000 0.000
#> z1~~z1 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> z2~~z2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> z3~~z3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y1~~y1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y2~~y2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y3~~y3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> X~~X 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> X~~Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Z~~Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~~Y 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~X 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~X:Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y2~~y2 y3~~y3 X~~X X~~Z Z~~Z Y~~Y Y~X Y~Z Y~X:Z
#> X=~x2
#> X=~x3
#> Z=~z2
#> Z=~z3
#> Y=~y2
#> Y=~y3
#> x1~1
#> x2~1
#> x3~1
#> z1~1
#> z2~1
#> z3~1
#> y1~1
#> y2~1
#> y3~1
#> x1~~x1
#> x2~~x2
#> x3~~x3
#> z1~~z1
#> z2~~z2
#> z3~~z3
#> y1~~y1
#> y2~~y2 0.000
#> y3~~y3 0.000 0.000
#> X~~X 0.000 0.000 0.001
#> X~~Z 0.000 0.000 0.000 0.001
#> Z~~Z 0.000 0.000 0.000 0.000 0.001
#> Y~~Y 0.000 0.000 0.000 0.000 0.000 0.001
#> Y~X 0.000 0.000 0.000 0.000 0.000 0.000 0.001
#> Y~Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.001
#> Y~X:Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.001
#>
#> $vcov.free
#> X=~x2 X=~x3 Z=~z2 Z=~z3 Y=~y2 Y=~y3 x1~1 x2~1 x3~1 z1~1 z2~1 z3~1
#> X=~x2 0.000
#> X=~x3 0.000 0.000
#> Z=~z2 0.000 0.000 0.000
#> Z=~z3 0.000 0.000 0.000 0.000
#> Y=~y2 0.000 0.000 0.000 0.000 0.000
#> Y=~y3 0.000 0.000 0.000 0.000 0.000 0.000
#> x1~1 0.000 0.000 0.000 0.000 0.000 0.000 0.001
#> x2~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> x3~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> z1~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.001
#> z2~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> z3~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y1~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y2~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y3~1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> x1~~x1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> x2~~x2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> x3~~x3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> z1~~z1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> z2~~z2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> z3~~z3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y1~~y1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y2~~y2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y3~~y3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> X~~X 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> X~~Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Z~~Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~~Y 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~X 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~X:Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y1~1 y2~1 y3~1 x1~~x1 x2~~x2 x3~~x3 z1~~z1 z2~~z2 z3~~z3 y1~~y1
#> X=~x2
#> X=~x3
#> Z=~z2
#> Z=~z3
#> Y=~y2
#> Y=~y3
#> x1~1
#> x2~1
#> x3~1
#> z1~1
#> z2~1
#> z3~1
#> y1~1 0.001
#> y2~1 0.001 0.001
#> y3~1 0.001 0.001 0.001
#> x1~~x1 0.000 0.000 0.000 0.000
#> x2~~x2 0.000 0.000 0.000 0.000 0.000
#> x3~~x3 0.000 0.000 0.000 0.000 0.000 0.000
#> z1~~z1 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> z2~~z2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> z3~~z3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y1~~y1 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y2~~y2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y3~~y3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> X~~X 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> X~~Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Z~~Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~~Y 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~X 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> Y~X:Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
#> y2~~y2 y3~~y3 X~~X X~~Z Z~~Z Y~~Y Y~X Y~Z Y~X:Z
#> X=~x2
#> X=~x3
#> Z=~z2
#> Z=~z3
#> Y=~y2
#> Y=~y3
#> x1~1
#> x2~1
#> x3~1
#> z1~1
#> z2~1
#> z3~1
#> y1~1
#> y2~1
#> y3~1
#> x1~~x1
#> x2~~x2
#> x3~~x3
#> z1~~z1
#> z2~~z2
#> z3~~z3
#> y1~~y1
#> y2~~y2 0.000
#> y3~~y3 0.000 0.000
#> X~~X 0.000 0.000 0.000
#> X~~Z 0.000 0.000 0.000 0.001
#> Z~~Z 0.000 0.000 0.000 0.000 0.000
#> Y~~Y 0.000 0.000 0.000 0.000 0.000 0.001
#> Y~X 0.000 0.000 0.000 0.000 0.000 0.000 0.001
#> Y~Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.001
#> Y~X:Z 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.001
#>
#> $information
#> X=~x2 X=~x3 Z=~z2 Z=~z3 Y=~y2 Y=~y3 x1~1
#> X=~x2 8940.747
#> X=~x3 -2765.687 8146.128
#> Z=~z2 63.585 74.532 9240.230
#> Z=~z3 72.563 81.754 -3032.850 8777.372
#> Y=~y2 -169.875 -194.485 -158.858 -172.299 23805.976
#> Y=~y3 -176.904 -205.656 -169.903 -183.161 -8380.279 21003.476
#> x1~1 34.115 35.756 92.255 97.701 -121.839 -132.311 8012.695
#> x2~1 23.346 28.024 72.307 76.575 -95.494 -103.702 -3634.461
#> x3~1 29.974 28.073 81.057 85.842 -107.050 -116.252 -4074.308
#> z1~1 90.735 98.998 26.865 31.847 -126.389 -133.258 53.908
#> z2~1 76.804 83.799 14.152 26.965 -106.984 -112.798 45.632
#> z3~1 84.254 91.927 24.802 21.316 -117.362 -123.740 50.058
#> y1~1 -23.763 -26.796 -24.006 -28.510 -588.848 -626.345 -176.130
#> y2~1 -19.609 -22.112 -19.809 -23.526 1365.672 -516.871 -145.337
#> y3~1 -20.851 -23.513 -21.065 -25.017 -516.884 1198.701 -154.545
#> x1~~x1 -1396.347 -1483.743 17.235 27.782 -10.528 -11.375 -12.161
#> x2~~x2 2711.566 -914.205 25.883 15.823 -6.339 -14.535 -13.200
#> x3~~x3 -1033.780 2733.340 14.451 17.608 14.545 22.541 -2.766
#> z1~~z1 12.119 13.031 -1311.348 -1440.566 14.620 13.817 38.991
#> z2~~z2 33.211 27.795 2849.053 -1039.784 -2.993 0.224 12.501
#> z3~~z3 24.314 33.491 -1122.468 2976.628 -14.486 -17.601 34.550
#> y1~~y1 1.265 0.821 7.267 5.970 -1489.413 -1622.407 2.830
#> y2~~y2 3.555 -5.601 -12.354 -9.445 3046.470 -1168.964 -11.090
#> y3~~y3 -16.518 -12.664 -8.496 -10.894 -1249.402 2844.947 2.599
#> X~~X 1137.039 1267.483 -50.877 -57.822 62.875 65.990 -9.888
#> X~~Z -118.581 -132.968 111.937 130.617 32.035 34.475 -52.127
#> Z~~Z -25.871 -29.528 1157.554 1267.859 48.924 52.020 -16.818
#> Y~~Y -29.915 -43.016 -32.768 -35.071 550.940 591.078 -12.812
#> Y~X -290.325 -315.148 -39.742 -48.469 435.470 458.944 -71.950
#> Y~Z -63.995 -68.938 -276.217 -286.143 396.880 432.271 -418.155
#> Y~X:Z -291.574 -336.412 -317.452 -348.116 417.876 437.485 -76.997
#> x2~1 x3~1 z1~1 z2~1 z3~1 y1~1 y2~1
#> X=~x2
#> X=~x3
#> Z=~z2
#> Z=~z3
#> Y=~y2
#> Y=~y3
#> x1~1
#> x2~1 9491.071
#> x3~1 -3193.328 8581.091
#> z1~1 42.252 47.365 7693.651
#> z2~1 35.765 40.093 -3641.280 9448.707
#> z3~1 39.234 43.982 -3994.479 -3381.192 8933.046
#> y1~1 -138.045 -154.752 -144.512 -122.325 -134.190 7704.280
#> y2~1 -113.911 -127.696 -119.247 -100.939 -110.730 -3985.346 9668.074
#> y3~1 -121.128 -135.787 -126.803 -107.334 -117.745 -4237.853 -3496.945
#> x1~~x1 13.892 15.573 49.676 42.049 46.128 -6.784 -5.598
#> x2~~x2 -43.431 -11.598 13.173 11.150 12.232 3.973 3.279
#> x3~~x3 -2.168 -27.445 31.653 26.793 29.392 5.867 4.842
#> z1~~z1 30.560 34.259 -19.288 -9.012 -9.347 -1.821 -1.502
#> z2~~z2 9.798 10.984 3.434 -15.042 3.554 -2.269 -1.872
#> z3~~z3 27.079 30.357 -9.134 -7.754 -19.680 9.397 7.754
#> y1~~y1 2.218 2.486 -4.751 -4.022 -4.410 -12.162 -3.561
#> y2~~y2 -8.692 -9.744 2.634 2.229 2.447 -3.645 -21.172
#> y3~~y3 2.037 2.284 -3.225 -2.730 -2.994 -2.831 -2.254
#> X~~X -7.750 -8.688 -31.106 -26.329 -28.896 -2.310 -1.906
#> X~~Z -40.856 -45.800 -39.574 -33.498 -36.747 55.725 45.983
#> Z~~Z -13.182 -14.777 6.545 5.539 6.107 -13.182 -10.878
#> Y~~Y -10.042 -11.257 -13.482 -11.413 -12.510 -1.478 -1.217
#> Y~X -56.393 -63.217 -398.754 -337.532 -370.272 -34.772 -28.693
#> Y~Z -327.738 -367.401 -71.350 -60.395 -66.268 -37.973 -31.334
#> Y~X:Z -60.348 -67.652 -51.240 -43.372 -47.597 129.456 106.823
#> y3~1 x1~~x1 x2~~x2 x3~~x3 z1~~z1 z2~~z2 z3~~z3
#> X=~x2
#> X=~x3
#> Z=~z2
#> Z=~z3
#> Y=~y2
#> Y=~y3
#> x1~1
#> x2~1
#> x3~1
#> z1~1
#> z2~1
#> z3~1
#> y1~1
#> y2~1
#> y3~1 8513.022
#> x1~~x1 -5.953 16046.255
#> x2~~x2 3.486 3561.575 22501.070
#> x3~~x3 5.148 4022.370 2497.019 18385.660
#> z1~~z1 -1.596 2.168 14.428 21.212 14803.644
#> z2~~z2 -1.989 52.007 -22.955 23.590 3284.983 22324.390
#> z3~~z3 8.247 13.160 42.381 18.614 3963.400 2881.637 19933.595
#> y1~~y1 -3.147 20.181 10.888 17.002 18.903 20.487 35.798
#> y2~~y2 -2.685 6.776 -18.913 29.505 3.041 10.424 -10.323
#> y3~~y3 -13.415 8.653 21.476 -5.536 12.922 -6.956 0.395
#> X~~X -2.026 236.334 141.155 217.201 -10.095 -15.335 -7.113
#> X~~Z 48.896 -23.108 -50.087 -62.739 12.921 13.463 -27.406
#> Z~~Z -11.567 -13.538 4.544 8.633 264.314 188.012 236.671
#> Y~~Y -1.278 87.142 35.734 97.591 85.855 57.362 64.144
#> Y~X -30.511 -171.079 -57.392 -129.435 33.310 -16.997 6.699
#> Y~Z -33.318 -23.024 15.998 4.538 -138.181 -41.861 -144.147
#> Y~X:Z 113.593 -105.128 -100.937 -73.765 -101.526 -117.057 -141.399
#> y1~~y1 y2~~y2 y3~~y3 X~~X X~~Z Z~~Z Y~~Y
#> X=~x2
#> X=~x3
#> Z=~z2
#> Z=~z3
#> Y=~y2
#> Y=~y3
#> x1~1
#> x2~1
#> x3~1
#> z1~1
#> z2~1
#> z3~1
#> y1~1
#> y2~1
#> y3~1
#> x1~~x1
#> x2~~x2
#> x3~~x3
#> z1~~z1
#> z2~~z2
#> z3~~z3
#> y1~~y1 14845.558
#> y2~~y2 3727.686 23377.628
#> y3~~y3 4422.242 3346.206 18127.334
#> X~~X -3.289 0.751 5.330 3679.723
#> X~~Z 1.111 0.378 -1.842 -317.004 1821.103
#> Z~~Z -5.003 4.035 4.559 0.730 44.593 3588.856
#> Y~~Y 170.591 79.635 60.896 7.085 -1.005 8.743 760.791
#> Y~X 18.307 -9.492 11.703 121.160 36.074 -2.399 51.685
#> Y~Z -13.291 42.514 -8.466 7.145 59.572 90.562 46.891
#> Y~X:Z -25.879 15.038 54.542 121.437 54.404 111.162 109.053
#> Y~X Y~Z Y~X:Z
#> X=~x2
#> X=~x3
#> Z=~z2
#> Z=~z3
#> Y=~y2
#> Y=~y3
#> x1~1
#> x2~1
#> x3~1
#> z1~1
#> z2~1
#> z3~1
#> y1~1
#> y2~1
#> y3~1
#> x1~~x1
#> x2~~x2
#> x3~~x3
#> z1~~z1
#> z2~~z2
#> z3~~z3
#> y1~~y1
#> y2~~y2
#> y3~~y3
#> X~~X
#> X~~Z
#> Z~~Z
#> Y~~Y
#> Y~X 1549.691
#> Y~Z 320.319 1596.952
#> Y~X:Z -64.348 -28.210 1511.779
#>
#> $coefficients.all
#> X=~x2 X=~x3 Z=~z2 Z=~z3 Y=~y2 Y=~y3 x1~1 x2~1 x3~1 z1~1 z2~1
#> 0.803 0.914 0.810 0.881 0.798 0.899 1.023 1.216 0.920 1.012 1.206
#> z3~1 y1~1 y2~1 y3~1 x1~~x1 x2~~x2 x3~~x3 z1~~z1 z2~~z2 z3~~z3 y1~~y1
#> 0.916 1.037 1.220 0.954 0.158 0.162 0.164 0.167 0.160 0.158 0.160
#> y2~~y2 y3~~y3 X~~X X~~Z Z~~Z Y~~Y Y~X Y~Z Y~X:Z
#> 0.154 0.164 0.981 0.200 1.017 0.980 0.673 0.569 0.718
#>
#> $coefficients.free
#> X=~x2 X=~x3 Z=~z2 Z=~z3 Y=~y2 Y=~y3 x1~1 x2~1 x3~1 z1~1 z2~1
#> 0.803 0.914 0.810 0.881 0.798 0.899 1.023 1.216 0.920 1.012 1.206
#> z3~1 y1~1 y2~1 y3~1 x1~~x1 x2~~x2 x3~~x3 z1~~z1 z2~~z2 z3~~z3 y1~~y1
#> 0.916 1.037 1.220 0.954 0.158 0.162 0.164 0.167 0.160 0.158 0.160
#> y2~~y2 y3~~y3 X~~X X~~Z Z~~Z Y~~Y Y~X Y~Z Y~X:Z
#> 0.154 0.164 0.981 0.200 1.017 0.980 0.673 0.569 0.718
#>
#> $partable
#> lhs op rhs label est std.error z.value p.value ci.lower ci.upper
#> 1 X =~ x1 1.000 NA NA NA NA NA
#> 2 X =~ x2 0.803 0.013 63.813 0 0.779 0.828
#> 3 X =~ x3 0.914 0.014 67.611 0 0.887 0.940
#> 4 Z =~ z1 1.000 NA NA NA NA NA
#> 5 Z =~ z2 0.810 0.012 65.087 0 0.786 0.835
#> 6 Z =~ z3 0.881 0.013 67.615 0 0.856 0.907
#> 7 Y =~ y1 1.000 NA NA NA NA NA
#> 8 Y =~ y2 0.798 0.007 107.550 0 0.784 0.813
#> 9 Y =~ y3 0.899 0.008 112.586 0 0.883 0.915
#> 10 Y ~ X 0.673 0.031 21.688 0 0.613 0.734
#> 11 Y ~ Z 0.569 0.030 18.734 0 0.510 0.629
#> 12 Y ~ X:Z 0.718 0.028 25.826 0 0.663 0.772
#> 13 x1 ~1 1.023 0.024 42.804 0 0.976 1.070
#> 14 x2 ~1 1.216 0.020 60.873 0 1.177 1.255
#> 15 x3 ~1 0.920 0.022 41.400 0 0.876 0.963
#> 16 z1 ~1 1.012 0.024 41.578 0 0.964 1.059
#> 17 z2 ~1 1.206 0.020 59.274 0 1.166 1.246
#> 18 z3 ~1 0.916 0.022 42.067 0 0.873 0.959
#> 19 y1 ~1 1.037 0.033 31.398 0 0.972 1.102
#> 20 y2 ~1 1.220 0.027 45.424 0 1.168 1.273
#> 21 y3 ~1 0.954 0.030 31.806 0 0.895 1.013
#> 22 x1 ~~ x1 0.158 0.009 18.171 0 0.141 0.175
#> 23 x2 ~~ x2 0.162 0.007 23.160 0 0.148 0.176
#> 24 x3 ~~ x3 0.164 0.008 20.758 0 0.149 0.180
#> 25 z1 ~~ z1 0.167 0.009 18.504 0 0.149 0.184
#> 26 z2 ~~ z2 0.160 0.007 22.680 0 0.146 0.173
#> 27 z3 ~~ z3 0.158 0.008 20.779 0 0.143 0.173
#> 28 y1 ~~ y1 0.160 0.009 18.011 0 0.142 0.177
#> 29 y2 ~~ y2 0.154 0.007 22.687 0 0.141 0.168
#> 30 y3 ~~ y3 0.164 0.008 20.683 0 0.148 0.179
#> 31 X ~~ X 0.981 0.036 26.969 0 0.910 1.052
#> 32 X ~~ Z 0.200 0.024 8.240 0 0.152 0.247
#> 33 Z ~~ Z 1.017 0.038 26.932 0 0.943 1.092
#> 34 Y ~~ Y 0.980 0.038 25.938 0 0.906 1.054
#>
#> $partable.input
#> lhs op rhs mod
#> 1 X =~ x1
#> 2 X =~ x2
#> 3 X =~ x3
#> 4 Z =~ z1
#> 5 Z =~ z2
#> 6 Z =~ z3
#> 7 Y =~ y1
#> 8 Y =~ y2
#> 9 Y =~ y3
#> 10 Y ~ X
#> 11 Y ~ Z
#> 12 Y ~ X:Z
#>
#> $loglik
#> [1] -17493.6
#>
#> $iterations
#> [1] 41
#>
#> $convergence
#> [1] TRUE
#>
#> $lambda
#> X Z Y
#> x1 1.000 0.000 0.000
#> x2 0.803 0.000 0.000
#> x3 0.914 0.000 0.000
#> z1 0.000 1.000 0.000
#> z2 0.000 0.810 0.000
#> z3 0.000 0.881 0.000
#> y1 0.000 0.000 1.000
#> y2 0.000 0.000 0.798
#> y3 0.000 0.000 0.899
#>
#> $tau
#> ~1
#> x1 1.023
#> x2 1.216
#> x3 0.920
#> z1 1.012
#> z2 1.206
#> z3 0.916
#> y1 1.037
#> y2 1.220
#> y3 0.954
#>
#> $theta
#> x1 x2 x3 z1 z2 z3 y1 y2 y3
#> x1 0.158
#> x2 0.000 0.162
#> x3 0.000 0.000 0.164
#> z1 0.000 0.000 0.000 0.167
#> z2 0.000 0.000 0.000 0.000 0.160
#> z3 0.000 0.000 0.000 0.000 0.000 0.158
#> y1 0.000 0.000 0.000 0.000 0.000 0.000 0.160
#> y2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.154
#> y3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.164
#>
#> $gamma.xi
#> X Z
#> Y 0.673 0.569
#>
#> $gamma.eta
#> Y
#> Y 0.000
#>
#> $omega.xi.xi
#> X Z
#> Y~X 0.000 0.718
#> Y~Z 0.000 0.000
#>
#> $omega.eta.xi
#> Y
#> Y~X 0.000
#> Y~Z 0.000
#>
#> $phi
#> X Z
#> X 0.981
#> Z 0.200 1.017
#>
#> $psi
#> Y
#> Y 0.980
#>
#> $alpha
#> ~1
#> Y 0.000
#>
#> $beta0
#> ~1
#> X 0.000
#> Z 0.000
#>
#> $cov.ov
#> x1 x2 x3 z1 z2 z3 y1 y2 y3
#> x1 1.139
#> x2 0.788 0.795
#> x3 0.897 0.720 0.984
#> z1 0.200 0.161 0.183 1.184
#> z2 0.162 0.130 0.148 0.824 0.828
#> z3 0.176 0.142 0.161 0.896 0.726 0.948
#> y1 0.774 0.622 0.708 0.714 0.579 0.629 2.603
#> y2 0.618 0.497 0.565 0.570 0.462 0.502 1.950 1.711
#> y3 0.696 0.560 0.636 0.642 0.520 0.566 2.197 1.753 2.139
#>
#> $cov.lv
#> X Z X:Z Y
#> X 0.981
#> Z 0.200 1.017
#> X:Z 0.000 0.000 1.038
#> Y 0.774 0.714 0.745 2.443
#>
#> $cov.all
#> X Z X:Z Y x1 x2 x3 z1 z2 z3 y1 y2
#> X 0.981
#> Z 0.200 1.017
#> X:Z 0.000 0.000 1.038
#> Y 0.774 0.714 0.745 2.443
#> x1 0.981 0.200 0.000 0.774 1.139
#> x2 0.788 0.161 0.000 0.622 0.788 0.795
#> x3 0.897 0.183 0.000 0.708 0.897 0.720 0.984
#> z1 0.200 1.017 0.000 0.714 0.200 0.161 0.183 1.184
#> z2 0.162 0.824 0.000 0.579 0.162 0.130 0.148 0.824 0.828
#> z3 0.176 0.896 0.000 0.629 0.176 0.142 0.161 0.896 0.726 0.948
#> y1 0.774 0.714 0.745 2.443 0.774 0.622 0.708 0.714 0.579 0.629 2.603
#> y2 0.618 0.570 0.595 1.950 0.618 0.497 0.565 0.570 0.462 0.502 1.950 1.711
#> y3 0.696 0.642 0.670 2.197 0.696 0.560 0.636 0.642 0.520 0.566 2.197 1.753
#> y3
#> X
#> Z
#> X:Z
#> Y
#> x1
#> x2
#> x3
#> z1
#> z2
#> z3
#> y1
#> y2
#> y3 2.139
#>
#> $cor.ov
#> x1 x2 x3 z1 z2 z3 y1 y2 y3
#> x1 1.000
#> x2 0.828 1.000
#> x3 0.847 0.814 1.000
#> z1 0.172 0.165 0.169 1.000
#> z2 0.167 0.160 0.164 0.833 1.000
#> z3 0.169 0.163 0.167 0.846 0.820 1.000
#> y1 0.450 0.432 0.442 0.407 0.394 0.400 1.000
#> y2 0.443 0.426 0.435 0.400 0.388 0.394 0.924 1.000
#> y3 0.446 0.429 0.439 0.403 0.391 0.397 0.931 0.917 1.000
#>
#> $cor.lv
#> X Z X:Z Y
#> X 1.000
#> Z 0.200 1.000
#> X:Z 0.000 0.000 1.000
#> Y 0.500 0.453 0.468 1.000
#>
#> $cor.all
#> X Z X:Z Y x1 x2 x3 z1 z2 z3 y1 y2
#> X 1.000
#> Z 0.200 1.000
#> X:Z 0.000 0.000 1.000
#> Y 0.500 0.453 0.468 1.000
#> x1 0.928 0.186 0.000 0.464 1.000
#> x2 0.892 0.179 0.000 0.446 0.828 1.000
#> x3 0.913 0.183 0.000 0.457 0.847 0.814 1.000
#> z1 0.185 0.927 0.000 0.420 0.172 0.165 0.169 1.000
#> z2 0.180 0.898 0.000 0.407 0.167 0.160 0.164 0.833 1.000
#> z3 0.183 0.913 0.000 0.413 0.169 0.163 0.167 0.846 0.820 1.000
#> y1 0.485 0.439 0.453 0.969 0.450 0.432 0.442 0.407 0.394 0.400 1.000
#> y2 0.477 0.432 0.446 0.954 0.443 0.426 0.435 0.400 0.388 0.394 0.924 1.000
#> y3 0.481 0.435 0.450 0.961 0.446 0.429 0.439 0.403 0.391 0.397 0.931 0.917
#> y3
#> X
#> Z
#> X:Z
#> Y
#> x1
#> x2
#> x3
#> z1
#> z2
#> z3
#> y1
#> y2
#> y3 1.000
#>
#> $mean.lv
#> ~1
#> X 0.000
#> Z 0.000
#> X:Z 0.200
#> Y 0.144
#>
#> $mean.ov
#> ~1
#> x1 1.023
#> x2 1.216
#> x3 0.920
#> z1 1.012
#> z2 1.206
#> z3 0.916
#> y1 1.181
#> y2 1.335
#> y3 1.083
#>
#> $mean.all
#> ~1
#> X 0.000
#> Z 0.000
#> X:Z 0.200
#> Y 0.144
#> x1 1.023
#> x2 1.216
#> x3 0.920
#> z1 1.012
#> z2 1.206
#> z3 0.916
#> y1 1.181
#> y2 1.335
#> y3 1.083
#>
#> $r2.all
#> Y x1 x2 x3 z1 z2 z3 y1 y2 y3
#> 0.599 0.861 0.796 0.833 0.859 0.807 0.833 0.939 0.910 0.924
#>
#> $r2.lv
#> Y
#> 0.599
#>
#> $r2.ov
#> x1 x2 x3 z1 z2 z3 y1 y2 y3
#> 0.861 0.796 0.833 0.859 0.807 0.833 0.939 0.910 0.924
#>
#> $res.all
#> Y x1 x2 x3 z1 z2 z3 y1 y2 y3
#> 0.401 0.139 0.204 0.167 0.141 0.193 0.167 0.061 0.090 0.076
#>
#> $res.lv
#> Y
#> 0.401
#>
#> $res.ov
#> x1 x2 x3 z1 z2 z3 y1 y2 y3
#> 0.139 0.204 0.167 0.141 0.193 0.167 0.061 0.090 0.076
#>
#>
# }