Learn R Programming

tidySEM (version 0.2.9)

BCH: Estimate an Auxiliary Model using the BCH Method

Description

Estimate an auxiliary model based on a latent classification by means of mixture modeling (see mx_mixture).

The auxiliary model is treated as a multi-group model. All cases are used in all groups, but they are weighted by group-specific BCH weights as described in Bolck, Croon, & Hagenaars, 2004.

Usage

BCH(x, model, data, ...)

Value

An MxModel.

Arguments

x

An object for which a method exists.

model

An object that can be converted to an OpenMx model using as_ram.

data

A data.frame on which the auxiliary model can be evaluated.

...

further arguments to be passed to or from other methods.

References

Bolck, A., Croon, M., & Hagenaars, J. (2004). Estimating latent structure models with categorical variables: One-step versus three-step estimators. Political Analysis, 12(1), 3-27. tools:::Rd_expr_doi("10.1093/pan/mph001")

Examples

Run this code
if(requireNamespace("OpenMx", quietly = TRUE)){
library(OpenMx)
dat <- data.frame(x = iris$Petal.Length)
mixmod <- mx_profiles(dat,
                      classes = 2)
res <- BCH(mixmod, "y ~ 1", data = data.frame(y = iris$Sepal.Length))
}

Run the code above in your browser using DataLab