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

Topic 15

Healthcare Call Data Analysis During Emergency Times

Easy
Healthcare Call Data Analysis During Emergency Times

Topic 15 โ€“ Healthcare Call Data Analysis During Emergency Times (Kaggle)

Level: Easy Goal: Analyze and forecast healthcare call center data during emergency periods using time series analysis. Suitable for both traditional ARIMA/SARIMA methods and ML/DL approaches.

Dataset

Download Instructions

  1. Open the dataset link above.
  2. Log in to Kaggle.
  3. Click "Download".
  4. Extract to data/healthcare_calls/.
  5. Use the file daily_and_month_call_report.csv.

Data Loading

import pandas as pd

df = pd.read_csv("data/healthcare_calls/daily_and_month_call_report.csv")

# Create datetime index from Year and Month columns
df['Date'] = pd.to_datetime(df['Year'].astype(str) + '-' + df['Month'] + '-01')
df = df.set_index('Date').sort_index()

# Select a time series to analyze (e.g., Total Number of Calls)
ts = df['Total Number of Calls']

Implementation Steps

1. Data Exploration

2. Exploratory Data Analysis (EDA)

3. Stationarity Analysis

4. Model Building

Traditional Methods:

Machine Learning Methods:

Deep Learning Methods (Optional):

5. Model Evaluation

6. Forecasting

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/15.Healthcare_Call_Data/ directory to access all resources.

โ† Back to All Topics