Learn R Programming

guess (version 0.7.0)

lca_adj: Person Level Adjustment

Description

Adjusts observed 1s based on item level parameters of the LCA model. Currently only takes data with Don't Know. And treats don't know responses as true confessions on ignorance. By default, NAs are treated as acknowledgments of ignorance.

Usage

lca_adj(
  pre = NULL,
  pst = NULL,
  na_as = c("dk", "missing"),
  missing_action = c("omit", "error")
)

Value

list of pre and post adjusted responses

Arguments

pre

pre data frame

pst

pst data frame

na_as

Classification of NA responses: `"dk"` (the default) treats them as observed don't know responses; `"missing"` treats them as structural missingness.

missing_action

How to handle structural missingness: `"omit"` excludes it and `"error"` rejects it.

Examples

Run this code
pre_test_var <- data.frame(pre = c(1, 0, 0, 1, "d", "d", 0, 1, NA))
pst_test_var <- data.frame(pst = c(1, NA, 1, "d", 1, 0, 1, 1, "d"))
lca_adj(pre_test_var, pst_test_var)

Run the code above in your browser using DataLab