Summarizing the data
You start by summarizing the purchases and prices for HOPPINESS
and BUD
. You calculate the average purchases of HOPPINESS
and BUD
as well as the average PRICE.HOP
and PRICE.BUD
levels by using the function colMeans()
. The function colMeans()
calculates the means across all specified data vectors simultaneously.
This exercise is part of the course
Building Response Models in R
Exercise instructions
- Get the mean of the
HOPPINESS
andBUD
purchases, as well as the average ofPRICE.HOP
andPRICE.BUD
levels by using the functioncolMeans()
.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Get the mean of HOPPINESS, BUD, PRICE.HOP and PRICE.BUD
___(choice.data[c(___,___,___,___)])