I’m running a multi-nominal model with categorical() in brm(). With three categories, I have three parameters mu_1, mu_2, and mu_3 in the output. How should I interpret these three parameters? Are exp(mu_1), exp(mu_2), and exp(mu_3) the odds ratios for those three categories? Or is exp(mu_1) associated with the base category?
Are you sure you only have three categories? Because, in brms, categorial() models are implemented using the first category as reference category, seeing mu1, mu2, mu3 indicates that you actually have four categories.
You’re correct! I misspoke: there are indeed FOUR categories! So, exp(mu_1), exp(mu_2), and exp(mu_3) are the odds ratios relative to the base category?