НачатьНачать бесплатно

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.

Это упражнение является частью курса

Building Response Models in R

Посмотреть курс

Инструкции к упражнению

  • Get the mean of the HOPPINESS and BUD purchases, as well as the average of PRICE.HOP and PRICE.BUD levels by using the function colMeans().

Интерактивное практическое упражнение

Попробуйте выполнить это упражнение, дополнив этот пример кода.

# Get the mean of HOPPINESS, BUD, PRICE.HOP and PRICE.BUD
___(choice.data[c(___,___,___,___)]) 
Редактировать и запускать код