This vignette demonstrates an
example of how to use the logitr()
function to estimate
multinomial logit (MNL) models with preference space and WTP space
utility parameterizations.
This example uses the yogurt data set from Jain et al. (1994). The data set contains 2,412 choice observations from a series of yogurt purchases by a panel of 100 households in Springfield, Missouri, over a roughly two-year period. The data were collected by optical scanners and contain information about the price, brand, and a “feature” variable, which identifies whether a newspaper advertisement was shown to the customer. There are four brands of yogurt: Yoplait, Dannon, Weight Watchers, and Hiland, with market shares of 34%, 40%, 23% and 3%, respectively.
In the utility models described below, the data variables are represented as follows:
Symbol | Variable |
---|---|
p | The price in US dollars. |
xjFeat | Dummy variable for whether the newspaper advertisement was shown to the customer. |
xjHiland | Dummy variable for the “Highland” brand. |
xjWeight | Dummy variable for the “Weight Watchers” brand. |
xjYoplait | Dummy variable for the “Yoplait” brand. |
This example will estimate the following homogeneous multinomial logit model in the preference space:
where the parameters α, β1, β2, β3, and β4 have units of utility.
Estimate the model using the logitr()
function:
library("logitr")
mnl_pref <- logitr(
data = yogurt,
outcome = 'choice',
obsID = 'obsID',
pars = c('price', 'feat', 'brand')
)
Print a summary of the results:
summary(mnl_pref)
#> =================================================
#>
#> Model estimated on: Fri Nov 01 08:44:11 PM 2024
#>
#> Using logitr version: 1.1.2
#>
#> Call:
#> logitr(data = yogurt, outcome = "choice", obsID = "obsID", pars = c("price",
#> "feat", "brand"))
#>
#> Frequencies of alternatives:
#> 1 2 3 4
#> 0.402156 0.029436 0.229270 0.339138
#>
#> Exit Status: 3, Optimization stopped because ftol_rel or ftol_abs was reached.
#>
#> Model Type: Multinomial Logit
#> Model Space: Preference
#> Model Run: 1 of 1
#> Iterations: 21
#> Elapsed Time: 0h:0m:0.02s
#> Algorithm: NLOPT_LD_LBFGS
#> Weights Used?: FALSE
#> Robust? FALSE
#>
#> Model Coefficients:
#> Estimate Std. Error z-value Pr(>|z|)
#> price -0.366555 0.024365 -15.0441 < 2.2e-16 ***
#> feat 0.491439 0.120062 4.0932 4.254e-05 ***
#> brandhiland -3.715477 0.145417 -25.5506 < 2.2e-16 ***
#> brandweight -0.641138 0.054498 -11.7645 < 2.2e-16 ***
#> brandyoplait 0.734519 0.080642 9.1084 < 2.2e-16 ***
#> ---
#> Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#>
#> Log-Likelihood: -2656.8878790
#> Null Log-Likelihood: -3343.7419990
#> AIC: 5323.7757580
#> BIC: 5352.7168000
#> McFadden R2: 0.2054148
#> Adj McFadden R2: 0.2039195
#> Number of Observations: 2412.0000000
View the estimated model coefficients:
coef(mnl_pref)
#> price feat brandhiland brandweight brandyoplait
#> -0.3665546 0.4914392 -3.7154773 -0.6411384 0.7345195
Compute the WTP implied from the preference space model:
wtp_mnl_pref <- wtp(mnl_pref, scalePar = "price")
wtp_mnl_pref
#> Estimate Std. Error z-value Pr(>|z|)
#> scalePar 0.36656 0.02426 15.109 < 2e-16 ***
#> feat 1.34070 0.35925 3.732 0.00019 ***
#> brandhiland -10.13622 0.58379 -17.363 < 2e-16 ***
#> brandweight -1.74909 0.18114 -9.656 < 2e-16 ***
#> brandyoplait 2.00385 0.14385 13.930 < 2e-16 ***
#> ---
#> Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
This example will estimate the following homogeneous multinomial logit model in the WTP space:
where the parameters ω1, ω2, ω3, and ω4 have units of dollars and λ is the scale parameter.
Estimate the model using the logitr()
function:
mnl_wtp <- logitr(
data = yogurt,
outcome = 'choice',
obsID = 'obsID',
pars = c('feat', 'brand'),
scalePar = 'price',
# Since WTP space models are non-convex, run a multistart
numMultiStarts = 10,
# Use the computed WTP from the preference space model as the starting
# values for the first run:
startVals = wtp_mnl_pref$Estimate
)
Print a summary of the results:
summary(mnl_wtp)
#> =================================================
#>
#> Model estimated on: Fri Nov 01 08:44:11 PM 2024
#>
#> Using logitr version: 1.1.2
#>
#> Call:
#> logitr(data = yogurt, outcome = "choice", obsID = "obsID", pars = c("feat",
#> "brand"), scalePar = "price", startVals = wtp_mnl_pref$Estimate,
#> numMultiStarts = 10)
#>
#> Frequencies of alternatives:
#> 1 2 3 4
#> 0.402156 0.029436 0.229270 0.339138
#>
#> Summary Of Multistart Runs:
#> Log Likelihood Iterations Exit Status
#> 1 -2656.888 84 3
#> 2 -2656.888 38 3
#> 3 -2656.888 41 3
#> 4 -2656.888 39 3
#> 5 -2656.888 46 3
#> 6 -2656.888 58 3
#> 7 -2656.888 49 3
#> 8 -2656.888 60 3
#> 9 -2656.888 38 3
#> 10 -2656.888 55 3
#>
#> Use statusCodes() to view the meaning of each status code
#>
#> Exit Status: 3, Optimization stopped because ftol_rel or ftol_abs was reached.
#>
#> Model Type: Multinomial Logit
#> Model Space: Willingness-to-Pay
#> Model Run: 6 of 10
#> Iterations: 58
#> Elapsed Time: 0h:0m:0.23s
#> Algorithm: NLOPT_LD_LBFGS
#> Weights Used?: FALSE
#> Robust? FALSE
#>
#> Model Coefficients:
#> Estimate Std. Error z-value Pr(>|z|)
#> scalePar 0.366583 0.024366 15.0448 < 2.2e-16 ***
#> feat 1.340589 0.355867 3.7671 0.0001651 ***
#> brandhiland -10.135758 0.576088 -17.5941 < 2.2e-16 ***
#> brandweight -1.749086 0.179898 -9.7227 < 2.2e-16 ***
#> brandyoplait 2.003816 0.142377 14.0740 < 2.2e-16 ***
#> ---
#> Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#>
#> Log-Likelihood: -2656.8878779
#> Null Log-Likelihood: -3343.7419990
#> AIC: 5323.7757559
#> BIC: 5352.7168000
#> McFadden R2: 0.2054148
#> Adj McFadden R2: 0.2039195
#> Number of Observations: 2412.0000000
View the estimated model coefficients:
Since WTP space models are non-convex, you cannot be certain that the model reached a global solution, even when using a multi-start. However, homogeneous models in the preference space are convex, so you are guaranteed to find the global solution in that space. Therefore, it can be useful to compute the WTP from the preference space model and compare it against the WTP from the WTP space model. If the WTP values and log-likelihood values from the two model spaces are equal, then the WTP space model is likely at a global solution.
To compare the WTP and log-likelihood values between the preference
space and WTP space models, use the wtpCompare()
function:
wtpCompare(mnl_pref, mnl_wtp, scalePar = 'price')
#> pref wtp difference
#> scalePar 0.3665546 0.3665834 0.00002883
#> feat 1.3406987 1.3405886 -0.00011012
#> brandhiland -10.1362190 -10.1357577 0.00046132
#> brandweight -1.7490940 -1.7490858 0.00000820
#> brandyoplait 2.0038476 2.0038157 -0.00003193
#> logLik -2656.8878790 -2656.8878779 0.00000106