Baselight

CPI And S&P 500 Historical Data

CPI from 9/2008 to 2/2023 and SP 500 from 3/2000 to 2/2023

@kaggle.rosicky1234_cpi_and_sp500

Loading...
Loading...

About this Dataset

CPI And S&P 500 Historical Data

There are two datasets here:

  1. Consumer Price Index Results(CPI) from 9/2008 to 2/2023
  2. S&P 500 Index from 3/2000 - 2/2023

What Is the Consumer Price Index (CPI)?
The Consumer Price Index (CPI) measures the monthly change in prices paid by U.S. consumers.

S&P 500
S&P 500 is the abbreviation of Standard and Poor's 500 in USA. This is a stock market index that tracks 500 publicly traded companies.

You are welcome to use this data source for analysis such as

  • Time Series Analysis
  • Finding Relation between CPI & SP 500
  • Comparing the pattern of CPI, SP 500 with other stocks.

Tables

Cpi

@kaggle.rosicky1234_cpi_and_sp500.cpi
  • 7.79 KB
  • 130 rows
  • 8 columns
Loading...

CREATE TABLE cpi (
  "year" BIGINT,
  "month" BIGINT,
  "day" BIGINT,
  "actual" DOUBLE,
  "predict" DOUBLE,
  "previous" DOUBLE,
  "diff_with_prev" DOUBLE,
  "diff_with_predict" DOUBLE
);

Sp500

@kaggle.rosicky1234_cpi_and_sp500.sp500
  • 173.67 KB
  • 5821 rows
  • 5 columns
Loading...

CREATE TABLE sp500 (
  "date" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE
);

Share link

Anyone who has the link will be able to view this.