File size: 845 Bytes
c19579a
4ba1215
 
 
 
 
 
 
 
 
 
bdbe16c
 
 
4ba1215
fe0abe9
bdbe16c
c19579a
fe0abe9
 
82086c2
7af2d66
bdbe16c
 
 
7af2d66
bdbe16c
 
 
 
 
 
fe0abe9
 
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
34
---
configs:
- config_name: pima
  data_files:
  - path: pima/train.csv
    split: train
  default: true
language: en
license: cc
pretty_name: Pima
size_categories: 1M<n<10M
tags:
- tabular_classification
- binary_classification
- multiclass_classification
task_categories:
- tabular-classification
---
# pima
The [pima dataset](https://archive.ics.uci.edu/ml/datasets/Ozone) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
Predict diabetes of a patient.

# Configurations and tasks
| **Configuration** | **Task**                  | **Description**         |
|-------------------|---------------------------|-------------------------|
| pima               | Binary classification     | Does the patient have diabetes?|


# Usage
```python
from datasets import load_dataset

dataset = load_dataset("mstz/pima")["train"]
```