National Economics University logo Faculty of Data Science and Artificial Intelligence logo BAI Lab logo

Topic 4

US Macroeconomic Indicators

Medium +1 Bonus Point
US Macroeconomic Indicators

Topic 4 โ€“ US Macroeconomic Indicators (Kaggle)

Level: Medium Goal: Model and forecast key US macro indicators (unemployment, inflation, etc.).

Dataset

Download Instructions

  1. Open the dataset link above.
  2. Click "Download".
  3. Extract to data/.
  4. Use the main CSV, e.g. USEconomicData.csv.

Data Loading

import pandas as pd
df = pd.read_csv("data/USEconomicData.csv")  # adjust filename
df["DATE"] = pd.to_datetime(df["DATE"])
df = df.set_index("DATE").sort_index()

Implementation Steps

1. Data Exploration

2. Exploratory Data Analysis (EDA)

3. Stationarity Analysis

4. Model Building

5. Model Evaluation

6. Economic Interpretation

Expected Deliverables

  1. EDA Report:
  1. Model Results:
  1. Code:

Tips

Starter Notebook

The starter notebook contains installation instructions and data loading code to help you get started with this topic.

๐Ÿ““ View Starter Notebook on GitHub

Note: You can view the notebook directly on GitHub or download it to run locally in Jupyter.

Getting Started

This topic includes:

Navigate to the Topic/4.US_Macro/ directory to access all resources.

โ† Back to All Topics