Important: Read this before posting to this forum

  1. This forum is for questions related to the use of Apollo. We will answer some general choice modelling questions too, where appropriate, and time permitting. We cannot answer questions about how to estimate choice models with other software packages.
  2. There is a very detailed manual for Apollo available at http://www.ApolloChoiceModelling.com/manual.html. This contains detailed descriptions of the various Apollo functions, and numerous examples are available at http://www.ApolloChoiceModelling.com/examples.html. In addition, help files are available for all functions, using e.g. ?apollo_mnl
  3. Before asking a question on the forum, users are kindly requested to follow these steps:
    1. Check that the same issue has not already been addressed in the forum - there is a search tool.
    2. Ensure that the correct syntax has been used. For any function, detailed instructions are available directly in Apollo, e.g. by using ?apollo_mnl for apollo_mnl
    3. Check the frequently asked questions section on the Apollo website, which discusses some common issues/failures. Please see http://www.apollochoicemodelling.com/faq.html
    4. Make sure that R is using the latest official release of Apollo.
  4. If the above steps do not resolve the issue, then users should follow these steps when posting a question:
    1. provide full details on the issue, including the entire code and output, including any error messages
    2. posts will not immediately appear on the forum, but will be checked by a moderator first. This may take a day or two at busy times. There is no need to submit the post multiple times.

Covariates and "left right effect" in WTP space

Ask questions about model specifications. Ideally include a mathematical explanation of your proposed model.
cybey
Posts: 60
Joined: 26 Apr 2020, 19:38

Re: Covariates and "left right effect" in WTP space

Post by cybey »

Hello Stephane,

I got another question regarding the interpretation of the covariates of the price coefficient when estimating a model in wtp space. Let's say my utility function looks like this:

Code: Select all

V[['alt1']] = b_Price_value * ( wtp_Att1Lvl2 * Att1Lvl2 + wtp_Att2Lvl2 * Att2Lvl2 + Price )
And my price coefficient looks like this:

Code: Select all

b_Price_value = b_Price *
      ( 1 + (b_TariffSwitched_Price * TariffSwitched) ) *
      ( Income / Income_Mean ) ^ elast_Price_Income
... and my estimation results are:

Code: Select all

b_TariffSwitched_Price = 0.10
elast_Price_Income = -0.15
Now I wonder if my interpretations are correct:
  • For a 10% increase in income, we would observe a 1.5% increase in wtp (on average across all wtp coefficients).
  • If a respondent has changed his/her tariff in the past, this lowers his/her wtp by 10% (on average across all wtp coefficients).
The reason I ask is that when estimating the model in utility space, the covariates only affect the beta coefficient of price (b_Price_value). Next, I divide the beta coefficients of the attributes by the price coefficient, while the latter changes as a function of the covariates, i.e. the betas of the attributes won't be affected by the covariates. In wtp space, however, the covariates of the price coefficient affect the whole utility function. On the one hand, the wtp coefficients are multiplied by the price coefficient (including covariates), but so is the price attribute.

What I mean is:

Code: Select all

b_Price * covariates * ( wtp_Att1Lvl2 * Att1Lvl2 + wtp_Att2Lvl2 * Att2Lvl2 + Price )
is not the same as

Code: Select all

b_Price * ( wtp_Att1Lvl2 * Att1Lvl2 * covariates + wtp_Att2Lvl2 * Att2Lvl2 * covariates + Price )
Best
Nico
stephanehess
Site Admin
Posts: 1046
Joined: 24 Apr 2020, 16:29

Re: Covariates and "left right effect" in WTP space

Post by stephanehess »

Hi Nico

the issue is that you're interaction the covariate with the scale of the model as opposed to only with the cost sensitivity. You can understand it most easily by looking at the partial derivatives.

Here's a case with two attributes, namely price (p) and an attribute x, and we have some covariate (cov) and want the wtp for this.

Preference space specification

Vpref = bp * cov * p + bx * x

dVpref/dx = bx
dVpref/dp = bp * cov
wtp = bx/(bp * cov)

Incorrect WTP space specification (as in your example)

Vwtp = bp * cov * ( p + vx * x )
dVwtp /dx = bp * cov * vx
dVwtp /dp = bp * cov
wtp = vx

==> this gives us a different wtp

Correct WTP space specification

Vwtp = bp * ( p * cov + vx * x )
dVwtp /dx = bp * vx
dVwtp /dp = bp * cov
wtp = vx/cov

we then have that this is the same as in preference space, as vx=bx/bp

Hope this helps

Stephane
--------------------------------
Stephane Hess
www.stephanehess.me.uk
cybey
Posts: 60
Joined: 26 Apr 2020, 19:38

Re: Covariates and "left right effect" in WTP space

Post by cybey »

Hi Stephane,

as always thank you very much! I must be a moron for not having noticed that myself.

Best
Nico
Post Reply