Session Ready
Exercise

Correlation between GDP and S&P500

In this exercise, you want to analyze stock returns from the S&P 500. You believe there may be a relationship between the returns of the S&P 500 and the GDP of the US. Merge the different datasets together to compute the correlation.

Two tables have been provided for you, named sp500, and gdp. As always, pandas has been imported for you as pd.

Instructions 1/3
undefined XP
  • 1
  • 2
  • 3
  • Use merge_ordered() to merge gdp and sp500 using a left join on year and date. Save the results as gdp_sp500.
  • Print gdp_sp500 and look at the returns for the year 2018.