How does one interpret the beta coefficients in R for a model that has a categorical dependent variable that is not binary? For instance, in the hypothetical model below, I would interpret B1 as being both statistically significant and positive, but if my categorical dependent variable can take on 4 categories, then which category does B1 positively predict? That is, if the DV can be (blue, red, green, yellow), what does B1 predict?
As an side, I am dealing with a very small sample size.
bayesglm(formula = DV ~ B1 + B2 + B3, family = binomial(link = "probit"),
data = data)
Deviance Residuals:
Min 1Q Median 3Q Max
-1.07714 0.03221 0.14180 0.25680 0.86569
Coefficients:
Estimate Std. Error z value Pr(>|z|)
(Intercept) -6.336e-01 1.859e+00 -0.341 0.7332
B1 2.691e+00 1.347e+00 1.998 0.0457 *
B2 1.586e+00 1.297e+00 1.223 0.2212
B3 6.637e-01 1.755e+00 0.378 0.7052