CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Visualizing Time Series Data in R

Afficher le cours

Instructions

  • 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

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Create scatterplot matrix


# Create upper panel scatterplot matrix
Modifier et exécuter le code