There are several packages that might interest you for a multinomial logit model. They are mlogit
, mnlogit
, antitrust
, and nnet
.
mlogit
: This is the most direct Multinomial Logit package currently available. It provides sample data, tools to estimate a multinomial logit model, and additional useful functions such as mlogit.optim to optimize specific parameters of multinomial logit functions.
mnlogit
: This package is similar to mlogit
, but it does not provide as many additional functions. It may be faster for the actual estimation process though.
antitrust
: This package can estimate merger effects under logit (or nested logit) demand. This does not directly provide the multinomial logit coefficients, but it is very good at solving for the bottom line HHI and price effects of a merger.
nnet
: This is a package for general multinomial log-linear models, and it can also estimate multinomial logit models.
Hope one of these packages helps for your purposes!