Multinomial logistic regression is a classifiction mechanism. Given
the multinomial data \(\{y_i\}\) with J categories and the
p-dimensional predictor variables \(\{x_i\}\), one wants to
forecast whether a future data point y* at the predictor x*.
Multinomial Logistic regression stiuplates that the statistical
model for observing a draw category j after rolling the multinomial
die \(n^*=1\) time is governed by
$$ P(y^* = j | x^*, \beta, n^*=1) = e^{x^* \beta_j} / \sum_{k=1}^J e^{x^* \beta_k}. $$
Instead of representing data as the total number of responses in
each category, one may record the average number of responses in
each category and the total number of responses \(n_i\) at
\(x_i\). We follow this method of encoding data.
We assume that \(\beta_J = 0\) for purposes of identification!
You may use mlogit for binary logistic regression with a normal prior.