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.
Este exercício faz parte do curso
Intermediate Interactive Data Visualization with plotly in R
Instruções do exercício
- Create a scatterplot of the trading
Volume
(on the y-axis) against theDate
(on the x-axis).
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Create a scatterplot with Date on the x-axis
# and Volume on the y-axis
acwi %>%
plot_ly(x = ___, y = ___) %>%
___()