Competition
Developing an effective pricing strategy for Hoppiness also requires considering the prices for Bud. The best way to do this is by price comparisons.
Therefore, you define a new variable price.ratio indicating the ratio of PRICE.HOP to PRICE.BUD. You also take the log() to ensure that the price ratio of Hoppiness to Bud has the same magnitude as the price ratio of Bud to Hoppiness. To better understand the new price.ratio variable, you compare its values to the original PRICE.HOP and PRICE.BUD values.
Este ejercicio forma parte del curso
Building Response Models in R
Instrucciones del ejercicio
- Calculate the ratio of
PRICE.HOPtoPRICE.BUD. Assign the result to an object namedprice.ratio. - Compare the
price.ratiovalues to the originalPRICE.HOPandPRICE.BUDvalues by using the functionscbind()andhead().
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Calculate the price ratio of PRICE.HOP to PRICE.BUD
price.ratio <- ___(___/___)
# Compare price.ratio to PRICE.HOP and PRICE.BUD
___(___(price.ratio, choice.data$PRICE.BUD, choice.data$PRICE.HOP))