Datasets:
File size: 999 Bytes
fc13df4 965f33e f0d885f 965f33e 56fe4ba f0d885f 965f33e f0d885f 56fe4ba 965f33e f0d885f 56fe4ba fc13df4 f0d885f 965f33e f0d885f 965f33e f0d885f 965f33e f0d885f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
---
language:
- en
tags:
- blood
- tabular_classification
- binary_classification
- multiclass_classification
- UCI
pretty_name: Blood Transfusion
size_categories:
- n<1K
task_categories:
- tabular-classification
configs:
- blood
license: cc
---
# Blood
The [Blood Transfusion dataset](https://archive-beta.ics.uci.edu/dataset/176/blood+transfusion+service+center) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
Census dataset including personal characteristic of a person, and their income threshold.
# Configurations and tasks
| **Configuration** | **Task** | **Description** |
|-------------------|---------------------------|---------------------------------------------------------------|
| blood | Binary classification | Has the person donated blood in the past month? |
# Usage
```python
from datasets import load_dataset
dataset = load_dataset("mstz/blood")["train"]
``` |