multinomial logistic multilevel models in R

后端 未结 6 1290
甜味超标
甜味超标 2021-01-29 21:57

Problem: I need to estimate a set of multinomial logistic multilevel models and can’t find an appropriate R package. What is the best R package to estimate such

6条回答
  •  情话喂你
    2021-01-29 22:16

    I am dealing with the same issue and one possible solution I found seems to resort to the poisson (loglinear/count) equivalent of the multinomial logistic model as described in this mailinglist, these nice slides or in Agresti (2013: 353-356). Thus, it should be possible to use the glmer(... family=poisson) function from the package lme4 with some aggregation of the data.

    Reference:
    Agresti, A. (2013) Categorical data analysis. Hoboken, NJ: Wiley.

提交回复
热议问题