--- language: - en tags: - blood - tabular_classification - binary_classification - multiclass_classification pretty_name: Blood Transfusion size_categories: - n<1K task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts - tabular-classification configs: - blood --- # 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"] ```