LoslegenKostenlos loslegen

Do people choose lower prices?

Remember I said I like to look at choice counts for every attribute? Well, we have one last attribute we should look at in the chocolate data: Price. The syntax for xtabs() is the same, so let's see if you can remember it on your own this time.

Diese Übung ist Teil des Kurses

Choice Modeling for Marketing in R

Kurs anzeigen

Anleitung zur Übung

  • Use xtabs to compute the counts for Price and Selection for the chocolate data. Assign the result to counts.
  • Plot the results.
  • Inspect the plot. Do people tend to choose lower prices?

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Use xtabs to count up how often each Price is chosen
counts <- ____

# Plot the counts
plot(___, cex=1.5)
Code bearbeiten und ausführen