Skip to content

QTDB Dataset

Overview

Over 100 fifteen-minute two-lead ECG recordings with onset, peak, and end markers for P, QRS, T, and (where present) U waves of from 30 to 50 selected beats in each recording.

Please visit Physionet for more details.

Funding

The QT Database was created as part of a project funded by the National Library of Medicine.

License

The QT Database is available for commercial use.

Supported Tasks

Usage

Example

from pathlib import Path
import heartkit as hk

# Download dataset
hk.datasets.download_datasets(hk.HKDownloadParams(
    ds_path=Path("./datasets"),
    datasets=["qtdb"],
    progress=True
))