arhythmia / README.md
mstz's picture
updated to datasets 4.*
1b23243
---
configs:
- config_name: has_arhythmia
data_files:
- path: has_arhythmia/train.csv
split: train
default: true
- config_name: arhythmia
data_files:
- path: arhythmia/train.csv
split: train
default: false
language: en
license: cc
pretty_name: Arhythmia
size_categories: 1M<n<10M
tags:
- tabular_classification
- binary_classification
- multiclass_classification
task_categories:
- tabular-classification
---
# Arhythmia
The [Arrhythmia dataset](https://archive.ics.uci.edu/ml/datasets/Arrhythmia) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
Does the patient have arhythmia? If so, what type?
# Configurations and tasks
| **Configuration** | **Task** | Description |
|-------------------|---------------------------|---------------------------------------------------------------|
| arhytmia | Multiclass classification | What type of arhythmia does the patient have? |
| has_arhytmia | Binary classification | Does the patient have arhythmia? |
# Usage
```python
from datasets import load_dataset
dataset = load_dataset("mstz/arhythmia", "arhythmia")["train"]
```
# Features
Target feature changes according to the selected configuration and is always in last position in the dataset.