ComenzarEmpieza gratis

A simple time series plot

Your task is to create an interactive time series plot of the opening price of the MSCI All Country World Index, instead of the closing price previously plotted.

Remember that the msci data set contains daily information on the trading price of the iShares MSCI All Country World Index ETF including:

  • Date: the date
  • Open: opening price
  • High: high price
  • Low: low price
  • Close: closing price
  • Volume: number of trades˙
  • Adjusted: adjusted closing price

After you create the plot, play around with it! Explore the ways that you can interact with plots in plotly, such as "Pan", "Zoom", and "Toggle Spike Lines".

Este ejercicio forma parte del curso

Intermediate Interactive Data Visualization with plotly in R

Ver curso

Instrucciones del ejercicio

  • Load the plotly package.
  • Fill in the code to create an interactive time series plot with Open on the y-axis and Date on the x-axis.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# load the plotly package
library(___)

# Create a times series plot of Open against Date
acwi %>% 
    plot_ly(x = ___, y = ___) %>% 
    add_lines()
Editar y ejecutar código