LoslegenKostenlos loslegen

A first scatterplot

Do video game players and critics rate games similarly? In this exercise, you will create a scatterplot in plotly to explore the relationship between the average player score (User_Score) and the average critic score (Critic_Score).

If you see anything unusual, be sure to utilize the interactive tools, such as hover info, to investigate.

Note that the dataset, vgsales, and plotly have already been loaded for you.

Diese Übung ist Teil des Kurses

Interactive Data Visualization with plotly in R

Kurs anzeigen

Anleitung zur Übung

  • Create a scatter plot with critic score (Critic_Score) on the x-axis and user score (User_Score) on the y-axis.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Create a scatter plot of User_Score against Critic_Score
___ %>% 
  ___(x = ___, y = ___) %>%
  ___
Code bearbeiten und ausführen