Computes the logit of each person's proportion correct. This is a descriptive score, not a fitted item-response model.
numeric vector of logit scores (length = n individuals)
Observed d/DK responses are scored as incorrect in this binary correctness baseline. They remain a distinct response category in the LCA functions.
sim <- simulate_lca(n = 100, seed = 123)
score_pre <- estimate_logit_score(sim$pre)
score_post <- estimate_logit_score(sim$post)