LoslegenKostenlos loslegen

A simple scatterplot

Now that you have created a time series plot, your task is to create an interactive scatterplot of the trading volume against the date.

The plotly package and acwi data set have already been loaded for you.

Diese Übung ist Teil des Kurses

Intermediate Interactive Data Visualization with plotly in R

Kurs anzeigen

Anleitung zur Übung

  • Create a scatterplot of the trading Volume (on the y-axis) against the Date (on the x-axis).

Interaktive Übung

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

# Create a scatterplot with Date on the x-axis 
# and Volume on the y-axis
acwi %>% 
  plot_ly(x = ___, y = ___) %>%
  ___()
Code bearbeiten und ausführen