I'm new to R, and I'm trying to run a logit model with alternative specific variables and without intercept. I have checked the documentation, but it seems that when I run the model with alternative specific variables, the intercepts are always included. Could anyone kindly tell me how to run the model without intercept? Thanks. Below is what I have tried. I use the data set Fishing in the mlogit package in R.
m.fishing.1 <- mlogit(mode ~ price + catch | income, data = df.fishing, reflevel = "beach");