ComenzarEmpieza gratis

Scatterplots for multiple pairs of data

In the previous exercise, you saw a numerical representation of the relationship between pairs of data through a correlation matrix. It's also possible to have a graphical representation of those relationships using scatterplots.

Specifically, the relationship between pairs() of time series is represented by a facetted scatterplot of all pairs at once. This is very convenient for a quick comparison between pairs of time series.

In this exercise, you will draw scatterplots of the stock data in my_data from the previous exercise.

Este ejercicio forma parte del curso

Visualizing Time Series Data in R

Ver curso

Instrucciones del ejercicio

  • Draw the scatterplots for all possible pairs in my_data
  • Remove the lower triangle of the scatterplot matrix by setting the lower.panel argument to NULL

Ejercicio interactivo práctico

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

# Create scatterplot matrix


# Create upper panel scatterplot matrix
Editar y ejecutar código