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

Topic 7

Human Vital Signs

Medium +1 Bonus Point
Human Vital Signs

Topic 7 โ€“ Human Vital Signs (Kaggle)

Level: Medium Goal: Analyze and forecast physiological signals (HR, BP, SpO2, etc.).

Dataset

Download Instructions

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

Data Loading

import pandas as pd
df = pd.read_csv("data/vital_signs/HumanVitalSigns.csv")  # adjust
df["Time"] = pd.to_datetime(df["Time"])  # adapt time column name
df = df.set_index("Time").sort_index()

Implementation Steps

1. Data Exploration

2. Exploratory Data Analysis (EDA)

3. Signal Preprocessing

4. Stationarity Analysis

5. Model Building

6. Model Evaluation

7. Clinical 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/7.Human_Vital_Signs/ directory to access all resources.

โ† Back to All Topics