blood / README.md
mstz's picture
Update README.md
56fe4ba
---
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"]
```