I would like to estimate a mixed logit model with some restrictions applied on some of the parameters. Is there a way of doing this in the mlogit package in R?
For example, in the model described below I would like to allow the coefficient on quality to be random normal but with a mean restricted to be zero (so that mlogit effectively only estimates the standard deviation). How can this be done?
Logit <- mlogit(Choice ~ Quality + Quality:FSM + Quality:TestScore,data = dt, panel = TRUE, rpar=c(Quality = "n"), R=100, method = "bhhh")