Estimating Weighted Logit Models

This vignette demonstrates an example of how to use the logitr() function with the weights argument to estimate weighted logit models.

The data

This example uses the cars_us data set from Helveston et al. (2015) containing 384 stated choice observations from US car buyers. Conjoint surveys were fielded in 2012 online in the US on Amazon Mechanical Turk and in person at the 2013 Pittsburgh Auto show. Participants were asked to select a vehicle from a set of three alternatives. Each participant answered 15 choice questions.

In the utility models described below, the data variables are represented as follows:

Symbol Variable
\(p\) The price in US dollars.
\(x_{j}^{\mathrm{hev}}\) Dummy variable for HEV vehicle type
\(x_{j}^{\mathrm{phev10}}\) Dummy variable for PHEV10 vehicle type
\(x_{j}^{\mathrm{phev20}}\) Dummy variable for PHEV20 vehicle type
\(x_{j}^{\mathrm{phev40}}\) Dummy variable for PHEV40 vehicle type
\(x_{j}^{\mathrm{bev75}}\) Dummy variable for BEV75 vehicle type
\(x_{j}^{\mathrm{bev100}}\) Dummy variable for BEV100 vehicle type
\(x_{j}^{\mathrm{bev150}}\) Dummy variable for BEV150 vehicle type
\(x_{j}^{\mathrm{phevFastcharge}}\) Dummy variable for if the PHEV has a fast charging capability
\(x_{j}^{\mathrm{bevFastcharge}}\) Dummy variable for if the BEV has a fast charging capability
\(x_{j}^{\mathrm{opCost}}\) The vehicle operating costs (cents / mile)
\(x_{j}^{\mathrm{accelTime}}\) The vehicle 0-60mph acceleration time
\(x_{j}^{\mathrm{american}}\) Dummy variable for an American brand
\(x_{j}^{\mathrm{japanese}}\) Dummy variable for a Japanese brand
\(x_{j}^{\mathrm{chinese}}\) Dummy variable for a Chinese brand
\(x_{j}^{\mathrm{skorean}}\) Dummy variable for a S. Korean brand

The utility model

In this example, we’ll estimate two versions of the following utility model in the WTP space: one without weights and one with weights. Notation is taken from Helveston et al. (2015):

\[\begin{equation} \begin{split} &u_{j} = \lambda (\\ &\omega_1 x_{j}^{\mathrm{hev}} + \omega_2 x_{j}^{\mathrm{phev10}} + \omega_3 x_{j}^{\mathrm{phev20}} + \omega_4 x_{j}^{\mathrm{phev40}} +\\ &\omega_5 x_{j}^{\mathrm{bev75}} + \omega_6 x_{j}^{\mathrm{bev100}} + \omega_7 x_{j}^{\mathrm{bev150}} +\\ &\omega_8 x_{j}^{\mathrm{phevFastcharge}} + \omega_9 x_{j}^{\mathrm{bevFastcharge}} + \omega_{10} x_{j}^{\mathrm{opCost}} + \omega_{11} x_{j}^{\mathrm{accelTime}} +\\ &\omega_{12} x_{j}^{\mathrm{american}} + \omega_{13} x_{j}^{\mathrm{japanese}} + \omega_{14} x_{j}^{\mathrm{chinese}} + \omega_{15} x_{j}^{\mathrm{skorean}} - p_{j}\\ &) +\varepsilon_{j} \end{split} \label{eq:mnlWtpCarsExample} \end{equation}\]

where all the \(\omega\) parameters have units of dollars and \(\lambda\) is the scale parameter.

Unweighted model

Estimate the unweighted model using the logitr() function. In this example, I have set robust = TRUE since it will also be TRUE in the weighted model:

library("logitr")

mnl_wtp_unweighted <- logitr(
  data    = cars_us,
  outcome = 'choice',
  obsID   = 'obsnum',
  pars    = c(
    'hev', 'phev10', 'phev20', 'phev40', 'bev75', 'bev100', 'bev150',
    'american', 'japanese', 'chinese', 'skorean', 'phevFastcharge',
    'bevFastcharge','opCost', 'accelTime'),
  scalePar   = 'price',
  robust     = TRUE,
  # Since WTP space models are non-convex, run a multistart
  numMultiStarts = 10
)

Print a summary of the results:

summary(mnl_wtp_unweighted)
#> =================================================
#> 
#> Model estimated on: Wed Sep 27 11:04:18 2023 
#> 
#> Using logitr version: 1.1.1 
#> 
#> Call:
#> logitr(data = cars_us, outcome = "choice", obsID = "obsnum", 
#>     pars = c("hev", "phev10", "phev20", "phev40", "bev75", "bev100", 
#>         "bev150", "american", "japanese", "chinese", "skorean", 
#>         "phevFastcharge", "bevFastcharge", "opCost", "accelTime"), 
#>     scalePar = "price", robust = TRUE, numMultiStarts = 10)
#> 
#> Frequencies of alternatives:
#>       1       2       3 
#> 0.34323 0.33507 0.32170 
#> 
#> Summary Of Multistart Runs:
#>    Log Likelihood Iterations Exit Status
#> 1       -4616.952         26           3
#> 2       -4616.952         33           3
#> 3       -4616.952         29           3
#> 4       -4616.952         36           3
#> 5       -4616.952         32           3
#> 6       -4616.952         30           3
#> 7       -4616.952         32           3
#> 8       -4616.952         25           3
#> 9       -4616.952         33           3
#> 10      -4616.952         47           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:                1 of 10
#> Iterations:                    26
#> Elapsed Time:          0h:0m:0.1s
#> Algorithm:         NLOPT_LD_LBFGS
#> Weights Used?:              FALSE
#> Cluster ID:                obsnum
#> Robust?                      TRUE
#> 
#> Model Coefficients: 
#>                   Estimate  Std. Error  z-value  Pr(>|z|)    
#> scalePar         0.0738778   0.0021929  33.6898 < 2.2e-16 ***
#> hev              0.8068260   0.9990687   0.8076 0.4193335    
#> phev10           1.1649982   1.0615103   1.0975 0.2724267    
#> phev20           1.6473977   1.0617543   1.5516 0.1207625    
#> phev40           2.5795310   1.0499377   2.4568 0.0140164 *  
#> bev75          -16.0458997   1.2541305 -12.7944 < 2.2e-16 ***
#> bev100         -13.0033090   1.2388653 -10.4961 < 2.2e-16 ***
#> bev150          -9.5736990   1.1641920  -8.2235 2.220e-16 ***
#> american         2.3429451   0.7979690   2.9361 0.0033233 ** 
#> japanese        -0.3756939   0.7998368  -0.4697 0.6385600    
#> chinese        -10.2706045   0.8859927 -11.5922 < 2.2e-16 ***
#> skorean         -6.0320195   0.8514460  -7.0844 1.396e-12 ***
#> phevFastcharge   2.8797097   0.8028928   3.5867 0.0003349 ***
#> bevFastcharge    2.9187141   0.9181393   3.1789 0.0014781 ** 
#> opCost          -1.6360512   0.0686316 -23.8382 < 2.2e-16 ***
#> accelTime       -1.6970892   0.1638118 -10.3600 < 2.2e-16 ***
#> ---
#> Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#>                                      
#> Log-Likelihood:         -4616.9517826
#> Null Log-Likelihood:    -6328.0067827
#> AIC:                     9265.9035652
#> BIC:                     9372.4426000
#> McFadden R2:                0.2703940
#> Adj McFadden R2:            0.2678655
#> Number of Observations:  5760.0000000
#> Number of Clusters       5760.0000000

Weighted model

To estimate the weighted model, simply add the weights argument to the call to logitr(), referring to the column of weights that will be used to weight each choice observation. In this example, the weights used in the weights column range from 0.2 to 5:

summary(cars_us$weights)
#>    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
#>  0.2000  0.2000  0.2000  0.6891  0.2000  5.0000

mnl_wtp_weighted <- logitr(
  data    = cars_us,
  outcome = 'choice',
  obsID   = 'obsnum',
  pars    = c(
    'hev', 'phev10', 'phev20', 'phev40', 'bev75', 'bev100', 'bev150',
    'american', 'japanese', 'chinese', 'skorean', 'phevFastcharge',
    'bevFastcharge','opCost', 'accelTime'),
  scalePar = 'price',
  weights  = 'weights', # This enables the weights
  robust   = TRUE,
  numMultiStarts = 10
)

Print a summary of the results:

summary(mnl_wtp_weighted)
#> =================================================
#> 
#> Model estimated on: Wed Sep 27 11:04:19 2023 
#> 
#> Using logitr version: 1.1.1 
#> 
#> Call:
#> logitr(data = cars_us, outcome = "choice", obsID = "obsnum", 
#>     pars = c("hev", "phev10", "phev20", "phev40", "bev75", "bev100", 
#>         "bev150", "american", "japanese", "chinese", "skorean", 
#>         "phevFastcharge", "bevFastcharge", "opCost", "accelTime"), 
#>     scalePar = "price", weights = "weights", robust = TRUE, numMultiStarts = 10)
#> 
#> Frequencies of alternatives:
#>       1       2       3 
#> 0.34323 0.33507 0.32170 
#> 
#> Summary Of Multistart Runs:
#>    Log Likelihood Iterations Exit Status
#> 1       -3425.633         19           3
#> 2       -3425.630         26           3
#> 3       -3425.630         28           3
#> 4       -3425.630         34           3
#> 5       -3425.630         33           3
#> 6       -3425.630         30           3
#> 7       -3425.630         31           3
#> 8       -3425.630         31           3
#> 9       -3425.630         33           3
#> 10      -3425.630         41           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:                7 of 10
#> Iterations:                    31
#> Elapsed Time:         0h:0m:0.12s
#> Algorithm:         NLOPT_LD_LBFGS
#> Weights Used?:               TRUE
#> Cluster ID:                obsnum
#> Robust?                      TRUE
#> 
#> Model Coefficients: 
#>                   Estimate  Std. Error z-value  Pr(>|z|)    
#> scalePar         0.0522808   0.0040691 12.8484 < 2.2e-16 ***
#> hev             -1.1757410   2.9133000 -0.4036 0.6865238    
#> phev10           0.0269368   3.1280068  0.0086 0.9931291    
#> phev20           1.6944505   3.0996987  0.5467 0.5846192    
#> phev40           2.6493302   2.9851596  0.8875 0.3748096    
#> bev75          -20.1367163   3.6671882 -5.4911 3.995e-08 ***
#> bev100         -19.4963842   3.6255818 -5.3774 7.555e-08 ***
#> bev150         -13.6911519   3.4926880 -3.9199 8.857e-05 ***
#> american         8.1877333   2.4052908  3.4041 0.0006639 ***
#> japanese         0.9344452   2.3603447  0.3959 0.6921836    
#> chinese        -19.0075749   2.8540850 -6.6598 2.742e-11 ***
#> skorean         -9.5104906   2.5234404 -3.7689 0.0001640 ***
#> phevFastcharge   3.9443659   2.3624294  1.6696 0.0949940 .  
#> bevFastcharge    3.3431253   2.8086763  1.1903 0.2339344    
#> opCost          -1.5975413   0.1948495 -8.1988 2.220e-16 ***
#> accelTime       -1.1717980   0.4834674 -2.4237 0.0153617 *  
#> ---
#> Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#>                                      
#> Log-Likelihood:         -3425.6302847
#> Null Log-Likelihood:    -4360.5909275
#> AIC:                     6883.2605694
#> BIC:                     6989.7997000
#> McFadden R2:                0.2144115
#> Adj McFadden R2:            0.2107422
#> Number of Observations:  5760.0000000
#> Number of Clusters       5760.0000000

Compare results

Here is a comparison of the coefficients between the weighted and unweighted models. All of the significant coefficients have the same sign, but the magnitudes shift some based on the differential weighting of each individual choice in the weighted model:

data.frame(
  Unweighted = coef(mnl_wtp_unweighted),
  Weighted   = coef(mnl_wtp_weighted)
)
#>                  Unweighted     Weighted
#> scalePar         0.07387776   0.05228084
#> hev              0.80682602  -1.17574100
#> phev10           1.16499818   0.02693685
#> phev20           1.64739765   1.69445045
#> phev40           2.57953096   2.64933025
#> bev75          -16.04589966 -20.13671627
#> bev100         -13.00330902 -19.49638417
#> bev150          -9.57369897 -13.69115193
#> american         2.34294510   8.18773335
#> japanese        -0.37569387   0.93444516
#> chinese        -10.27060451 -19.00757488
#> skorean         -6.03201950  -9.51049064
#> phevFastcharge   2.87970966   3.94436592
#> bevFastcharge    2.91871408   3.34312531
#> opCost          -1.63605116  -1.59754127
#> accelTime       -1.69708921  -1.17179802

Here is a comparison of the log-likelihood for the weighted and unweighted models:

c(
  "Unweighted" = mnl_wtp_unweighted$logLik,
  "Weighted" = mnl_wtp_weighted$logLik
)
#> Unweighted   Weighted 
#>  -4616.952  -3425.630

References

Helveston, John Paul, Yimin Liu, Eleanor Mcdonnell Feit, Erica R. H. Fuchs, Erica Klampfl, and Jeremy J. Michalek. 2015. Will Subsidies Drive Electric Vehicle Adoption? Measuring Consumer Preferences in the U.S. and China.” Transportation Research Part A: Policy and Practice 73: 96–112. https://doi.org/10.1016/j.tra.2015.01.002.