This vignette demonstrates an
example of how to use the logitr()
function to estimate
mixed logit (MXL) models with preference space and WTP space utility
parameterizations.
The mixed logit model is a popular approach for modeling unobserved
heterogeneity across individuals, which is implemented by assuming that
parameters vary randomly across individuals according to a chosen
distribution (McFadden and Train 2000). A
mixed logit model is specified by setting the randPars
argument in the logitr()
function equal to a named vector
defining parameter distributions. In the example below, we set
randPars = c(feat = 'n', brand = 'n')
so that
feat
and brand
are normally distributed. The
current package version supports the following distributions:
"n"
"ln"
"cn"
Mixed logit models will estimate a mean and standard deviation of the
underlying normal distribution for each random coefficient. Note that
log-normal or zero-censored normal parameters force positivity, so when
using these it is often necessary to use the negative of a value
(e.g. for “price”, which typically has a negative coefficient). Mixed
logit models in logitr
assume uncorrelated heterogeneity
covariances by default, though full covariances can be estimated using
the correlation = TRUE
argument. For WTP space models, the
scalePar
parameter can also be modeled as following a
random distribution by setting the randScale
argument equal
to "n"
, "ln"
, or "cn"
.
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 mixed logit model in the preference space:
where the parameters α, β1, β2, β3, and β4 have units of utility. In the example below, we will model β1, β2, β3, and β4 as normally distributed across the population. As a result, the model will estimate a mean and standard deviation for each of these coefficients.
Note that since the yogurt
data has a panel structure
(i.e. multiple choice observations for each respondent), it is necessary
to set the panelID
argument to the id
variable, which identifies the individual. This will use the panel
version of the log-likelihood (see Train
2009 chapter 6, section 6.7 for details).
Finally, as with WTP space models, it is recommended to use a
multistart search for mixed logit models as they are non-convex. This is
implemented in the example below by setting
numMultiStarts = 10
:
library("logitr")
set.seed(456)
mxl_pref <- logitr(
data = yogurt,
outcome = 'choice',
obsID = 'obsID',
panelID = 'id',
pars = c('price', 'feat', 'brand'),
randPars = c(feat = 'n', brand = 'n'),
numMultiStarts = 10
)
Print a summary of the results:
summary(mxl_pref)
#> =================================================
#>
#> Model estimated on: Wed Sep 27 08:37:32 2023
#>
#> Using logitr version: 1.1.1
#>
#> Call:
#> logitr(data = yogurt, outcome = "choice", obsID = "obsID", pars = c("price",
#> "feat", "brand"), randPars = c(feat = "n", brand = "n"),
#> panelID = "id", numMultiStarts = 10, numCores = numCores)
#>
#> 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 -1266.550 34 3
#> 2 -1300.751 64 3
#> 3 -1260.216 35 3
#> 4 -1261.216 43 3
#> 5 -1269.066 40 3
#> 6 -1239.294 56 3
#> 7 -1343.221 59 3
#> 8 -1260.006 55 3
#> 9 -1273.143 52 3
#> 10 -1304.384 59 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: Mixed Logit
#> Model Space: Preference
#> Model Run: 6 of 10
#> Iterations: 56
#> Elapsed Time: 0h:0m:1s
#> Algorithm: NLOPT_LD_LBFGS
#> Weights Used?: FALSE
#> Panel ID: id
#> Robust? FALSE
#>
#> Model Coefficients:
#> Estimate Std. Error z-value Pr(>|z|)
#> price -0.448338 0.039987 -11.2120 < 2.2e-16 ***
#> feat 0.776990 0.193521 4.0150 5.944e-05 ***
#> brandhiland -6.367360 0.520828 -12.2255 < 2.2e-16 ***
#> brandweight -3.668683 0.307207 -11.9421 < 2.2e-16 ***
#> brandyoplait 1.122492 0.203483 5.5164 3.460e-08 ***
#> sd_feat 0.567495 0.225004 2.5222 0.01166 *
#> sd_brandhiland -3.181844 0.371697 -8.5603 < 2.2e-16 ***
#> sd_brandweight 4.097130 0.232495 17.6225 < 2.2e-16 ***
#> sd_brandyoplait 3.261281 0.219902 14.8306 < 2.2e-16 ***
#> ---
#> Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#>
#> Log-Likelihood: -1239.2944250
#> Null Log-Likelihood: -3343.7419990
#> AIC: 2496.5888500
#> BIC: 2548.6828000
#> McFadden R2: 0.6293690
#> Adj McFadden R2: 0.6266774
#> Number of Observations: 2412.0000000
#>
#> Summary of 10k Draws for Random Coefficients:
#> Min. 1st Qu. Median Mean 3rd Qu. Max.
#> feat -Inf 0.3938347 0.7765564 0.7761956 1.1591475 Inf
#> brandhiland -Inf -8.5118796 -6.3663393 -6.3644101 -4.2201174 Inf
#> brandweight -Inf -6.4342648 -3.6720435 -3.6750045 -0.9090452 Inf
#> brandyoplait -Inf -1.0817673 1.1169084 1.1141118 3.3162383 Inf
The above summary table prints summaries of the estimated
coefficients as well as a summary table of the distribution of 10,000
population draws for each normally-distributed model coefficient. The
results show that the feat
attribute has a significant
standard deviation coefficient, suggesting that there is considerable
heterogeneity across the population for this attribute. In contrast, the
brand
coefficients have small and insignificant standard
deviation coefficients.
Compute the WTP implied from the preference space model:
wtp_mxl_pref <- wtp(mxl_pref, scalePar = "price")
wtp_mxl_pref
#> Estimate Std. Error z-value Pr(>|z|)
#> scalePar 0.448338 0.039988 11.2117 < 2.2e-16 ***
#> feat 1.733046 0.499837 3.4672 0.0005259 ***
#> brandhiland -14.202148 1.388612 -10.2276 < 2.2e-16 ***
#> brandweight -8.182853 0.978641 -8.3614 < 2.2e-16 ***
#> brandyoplait 2.503674 0.410619 6.0973 1.079e-09 ***
#> sd_feat 1.265776 0.502533 2.5188 0.0117758 *
#> sd_brandhiland -7.096979 0.958662 -7.4030 1.332e-13 ***
#> sd_brandweight 9.138487 0.948486 9.6348 < 2.2e-16 ***
#> sd_brandyoplait 7.274160 0.771046 9.4341 < 2.2e-16 ***
#> ---
#> Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
This example will estimate the following mixed logit model in the WTP space:
where the parameters ω1, ω2, ω3, and ω4 have units of dollars and λ is the scale parameter. In the example below, we will model ω1, ω2, ω3, and ω4 as normally distributed across the population. Note that this is a slightly different assumption than in the preference space model. In the WTP space, we are assuming that the WTP for these features is normally-distributed (as opposed to the preference space model where the utility coefficients are assumed to follow a normal distribution).
In the example below, we also use a 10-iteration multistart. We also set the starting values for the first iteration to the computed WTP from the preference space model:
set.seed(6789)
mxl_wtp <- logitr(
data = yogurt,
outcome = 'choice',
obsID = 'obsID',
panelID = 'id',
pars = c('feat', 'brand'),
scalePar = 'price',
randPars = c(feat = 'n', brand = 'n'),
numMultiStarts = 10,
startVals = wtp_mxl_pref$Estimate
)
Print a summary of the results:
summary(mxl_wtp)
#> =================================================
#>
#> Model estimated on: Wed Sep 27 08:37:40 2023
#>
#> Using logitr version: 1.1.1
#>
#> Call:
#> logitr(data = yogurt, outcome = "choice", obsID = "obsID", pars = c("feat",
#> "brand"), scalePar = "price", randPars = c(feat = "n", brand = "n"),
#> panelID = "id", startVals = wtp_mxl_pref$Estimate, numMultiStarts = 10,
#> numCores = numCores)
#>
#> 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 -1239.294 110 3
#> 2 -1252.536 76 3
#> 3 -1258.974 87 3
#> 4 -1342.088 110 4
#> 5 -1250.922 111 3
#> 6 -1266.990 66 3
#> 7 -1268.352 81 3
#> 8 -1239.294 76 3
#> 9 -1258.974 60 3
#> 10 -1239.294 51 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: Mixed Logit
#> Model Space: Willingness-to-Pay
#> Model Run: 8 of 10
#> Iterations: 76
#> Elapsed Time: 0h:0m:2s
#> Algorithm: NLOPT_LD_LBFGS
#> Weights Used?: FALSE
#> Panel ID: id
#> Robust? FALSE
#>
#> Model Coefficients:
#> Estimate Std. Error z-value Pr(>|z|)
#> scalePar 0.448664 0.040011 11.2136 < 2.2e-16 ***
#> feat 1.731594 0.491861 3.5205 0.0004307 ***
#> brandhiland -14.223131 1.365740 -10.4142 < 2.2e-16 ***
#> brandweight -8.170605 0.955887 -8.5477 < 2.2e-16 ***
#> brandyoplait 2.504170 0.407198 6.1498 7.760e-10 ***
#> sd_feat 1.266643 0.497394 2.5466 0.0108791 *
#> sd_brandhiland -7.114238 0.944440 -7.5328 4.974e-14 ***
#> sd_brandweight 9.129315 0.923604 9.8845 < 2.2e-16 ***
#> sd_brandyoplait 7.269364 0.752767 9.6569 < 2.2e-16 ***
#> ---
#> Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#>
#> Log-Likelihood: -1239.2939753
#> Null Log-Likelihood: -3343.7419990
#> AIC: 2496.5879505
#> BIC: 2548.6819000
#> McFadden R2: 0.6293691
#> Adj McFadden R2: 0.6266775
#> Number of Observations: 2412.0000000
#>
#> Summary of 10k Draws for Random Coefficients:
#> Min. 1st Qu. Median Mean 3rd Qu. Max.
#> feat -Inf 0.8763949 1.730626 1.729820 2.584565 Inf
#> brandhiland -Inf -19.0180303 -14.220849 -14.216535 -9.422143 Inf
#> brandweight -Inf -14.3329366 -8.178094 -8.184692 -2.021520 Inf
#> brandyoplait -Inf -2.4091027 2.491724 2.485490 7.394009 Inf
If you want to compare the WTP from the two different model spaces,
use the wtpCompare()
function:
wtpCompare(mxl_pref, mxl_wtp, scalePar = 'price')
#> pref wtp difference
#> scalePar 0.4483378 0.4486637 0.00032586
#> feat 1.7330459 1.7315938 -0.00145218
#> brandhiland -14.2021477 -14.2231313 -0.02098355
#> brandweight -8.1828533 -8.1706054 0.01224797
#> brandyoplait 2.5036744 2.5041696 0.00049521
#> sd_feat 1.2657757 1.2666434 0.00086772
#> sd_brandhiland -7.0969786 -7.1142376 -0.01725899
#> sd_brandweight 9.1384874 9.1293151 -0.00917230
#> sd_brandyoplait 7.2741604 7.2693641 -0.00479629
#> logLik -1239.2944250 -1239.2939753 0.00044974
Note that the WTP will not necessarily be the same between preference space and WTP space MXL models. This is because the distributional assumptions in MXL models imply different distributions on WTP depending on the model space. See Train and Weeks (2005) and Sonnier, Ainslie, and Otter (2007) for details on this topic.