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

Topic 12

Open Multidomain Time Series

Hard +1.5 Bonus Points
Open Multidomain Time Series

Topic 12 โ€“ Open Multidomain Time Series (Custom Advanced Topic)

Level: Hard Goal: Choose a series from a curated collection and design a custom forecasting/classification problem.

Collection

Download & Load Instructions

  1. Open the GitHub link above.
  2. Find a dataset (e.g., airline passengers, air pollution, traffic).
  3. Click file โ†’ "Download" or "Raw" and save as CSV to data/open_ts/.

Data Loading (Example)

import pandas as pd
df = pd.read_csv("data/open_ts/example.csv")  # adjust
df["Date"] = pd.to_datetime(df["Date"])       # adapt column name
df = df.set_index("Date").sort_index()

Implementation Steps

1. Dataset Selection

2. Problem Formulation

3. Data Exploration

4. Exploratory Data Analysis (EDA)

5. Data Preprocessing

6. Model Building

7. Model Evaluation

8. Advanced Analysis (Customize Based on Problem)

9. Interpretation and Discussion

Expected Deliverables

  1. Problem Definition:
  1. EDA Report:
  1. Model Results:
  1. Code:
  1. Discussion:

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/12.Open_Time_Series/ directory to access all resources.

โ† Back to All Topics