mx_lca | R Documentation |
This function simplifies the specification of latent class models: models that estimate membership of a categorical latent variable based on binary or ordinal indicators.
mx_lca(data = NULL, classes = 1L, run = TRUE, ...)
data |
The data.frame to be used for model fitting. |
classes |
A vector of integers, indicating which class solutions to
generate. Defaults to 1L. E.g., |
run |
Logical, whether or not to run the model. If |
... |
Additional arguments, passed to functions. |
Returns an OpenMx::mxModel()
.
Van Lissa, C. J., Garnier-Villarreal, M., & Anadria, D. (2023). Recommended Practices in Latent Class Analysis using the Open-Source R-Package tidySEM. Structural Equation Modeling. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1080/10705511.2023.2250920")}
## Not run:
df <- data_mix_ordinal
df[1:4] <- lapply(df, ordered)
mx_lca(data = df,
classes = 2) -> res
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.