Skip to content

Instantly share code, notes, and snippets.

@tbates
Last active October 20, 2019 10:57
Show Gist options
  • Save tbates/1bc1b431d10bf63bbf82 to your computer and use it in GitHub Desktop.
Save tbates/1bc1b431d10bf63bbf82 to your computer and use it in GitHub Desktop.
A list of synonyms for modelling

Models

  1. Structural Equation Model
  • RAM or LISREL model where the entries of A and S are numeric
  1. Extended SEM
  • Model in which the RAM equivalent of A and S entries may be arbitrary algebras.
  1. Definition variable
  • Any value in an SEM that is replaced with a person-specific value such that it is different for every row or person.
  1. Multilevel model
  • Relational SEM (by analogy to the way in which a relational database links values in different tables. How OpenMx implements mulit-level
  1. Item Response Theory
  • Item factor analysis (IFA)
  1. Independent variable
  1. "Regressed on", as in "Y is regressed on predictors x and z"
  • What ~ means in an lm(), e.g.
  • in lavaan: "locus ~ read + write"
  • in Mplus: "locus on read write"
  • in sem "locus <- read write"
  • in OpenMx mxPath(c("read", "write"), to = "locus")
  1. Exogenous
  • variable imposed on the model, and not influenced by variables inside the model.

Estimators

  1. WLS = weighted least squares
  2. Robust weighted least squares
  • DWLS (Mplus)
  • estimator = WLSMV or WLSM in Mplus and lavaan,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment