Hi! I have no clue why this is flummoxing me, yet here we are. I'm trying to do a very simple model for a categorical outcome. No matter what model I run it with, executing code of the form
test.model <- '
test =~ bottle + judge
rating ~ response
'
test.out <- bsem(test.model, data = wine, bcontrol = list(cores = 3))
Ends up with the error
Error: lavaan->lav_options_set():
missing = “ml” not available in the categorical setting
Despite my best internet poking, I can't figure out how to change that lavaan option in the blavaan call. I must be missing something completely obvious.
Thanks!