You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Model is that latent variable is influenced by the manifest variables
80
+
-`~` indicates regression
81
+
-`Y ~ X`
82
+
- Model is that `Y` is influenced by `X` (i.e., `X` predicts `Y`)
83
+
- Names need to be defined in dataset or previously defined latents
84
+
-`~~` indicates covariance (i.e., unstandardized correlation; it is a correlation, i.e., standardized covariance, if the variables—or the coefficient—are standardized)
85
+
- Does not matter which order you write it in
86
+
- Names need to be defined in dataset or previously defined latents
87
+
- You can set specific variances by using:
88
+
-`variable ~~ NUMBER*variable`
89
+
For instance, you can standardize the variance for a variable by fixing its variance to 1:
90
+
- `variable ~~ 1*variable`
91
+
-`~ 1` indicates intercept
92
+
-`variable ~ 1`
93
+
- To center a variable, you can set its intercept to 0:
0 commit comments