brms: how do I setup a model with multiple categorical variables, so that all levels are present and none are baked into the general intercept?
E.g. suppose we have predictors:
gender (2 levels)
educ (educational level, 3 levels)
Doing
brm(somey ~ 0 + gender)
seems to allow me to have both levels of gender present as coefficients. However, if I modify this to:
brm(somey ~ 0 + gender + educ)
leads to still having the 2 genders individually, but now one level of educ is baked into the intercept. I'm not sure if this is desirable. I wonder how to have all 3 levels individually present and none baked into intercept.
Doing
brm(somey ~ 0 + gender + 0 + educ)
does not help.
Or put otherwise:
Can I have
\beta_1 x_1 + \beta_2 x_2
rather than
\beta_0 + \beta_1 x_1 + \beta_2 x_2