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

Adding a third variable

In this exercise, you'll add color to a scatterplot based on a third variable in an effort to explore the relationship between the user score and critic scores of video games in 2016.

plotly has already been loaded for you.

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

Interactive Data Visualization with plotly in R

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

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

  • Change the marker color in the scatterplot of user score (User_Score) against critic score (Critic_Score) to represent Genre.
  • Use Dark2 instead of the default color palette.

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

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

# Use color to add Genre as a third variable
vgsales2016 %>%
  plot_ly(___, ___, ___) %>%
  ___(___)
Редактировать и запускать код