In the `mlogit` package there is a data set called `Fishing`. This data depicts a customer choice model of different recreational fishing choices. This is based on price, how many fish are caught, and income.
(1) Create a model based on price, catch, and income, that describes a customers choice of mode.
(2) Describe how you arrived at your model
(3) Explain any insights your model provides.
```{r}
library(mlogit)
data("Fishing")
head(Fishing)