Datasets:
Tasks:
Tabular Classification
Modalities:
Tabular
Formats:
csv
Sub-tasks:
tabular-multi-class-classification
Size:
100K - 1M
Tags:
healthcare
diabetes
readmission
electronic-health-records
uncertainty-quantification
clinical-prediction
License:
Youran Li commited on
Restore full detailed data card and fix metadata
Browse files
README.md
CHANGED
|
@@ -18,20 +18,74 @@ size_categories:
|
|
| 18 |
|
| 19 |
## Dataset Summary
|
| 20 |
|
| 21 |
-
This dataset is derived from the Kaggle
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
## Prediction Task
|
| 24 |
|
| 25 |
-
-
|
| 26 |
-
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
-
##
|
| 30 |
|
| 31 |
-
-
|
| 32 |
-
- `validation.csv`
|
| 33 |
-
- `test.csv`
|
| 34 |
|
| 35 |
-
##
|
| 36 |
|
| 37 |
-
|
|
|
|
| 18 |
|
| 19 |
## Dataset Summary
|
| 20 |
|
| 21 |
+
This dataset is derived from the Kaggle Diabetic Patients Readmission Prediction dataset and contains electronic health record (EHR) data from diabetic patient hospital encounters across the United States.
|
| 22 |
+
|
| 23 |
+
It is formatted for binary classification of 30-day hospital readmission and is designed for evaluating predictive modeling and uncertainty quantification methods.
|
| 24 |
+
|
| 25 |
+
## Source Data
|
| 26 |
+
|
| 27 |
+
Original dataset:
|
| 28 |
+
|
| 29 |
+
https://www.kaggle.com/datasets/saurabhtayal/diabetic-patients-readmission-prediction
|
| 30 |
|
| 31 |
## Prediction Task
|
| 32 |
|
| 33 |
+
Binary classification of 30-day hospital readmission.
|
| 34 |
+
|
| 35 |
+
Target variable: `readmit_30d`
|
| 36 |
+
|
| 37 |
+
- `1`: readmitted within 30 days (`<30`)
|
| 38 |
+
- `0`: not readmitted within 30 days (`>30` or `NO`)
|
| 39 |
+
|
| 40 |
+
## Dataset Files
|
| 41 |
+
|
| 42 |
+
- `train.csv`: processed training split
|
| 43 |
+
- `validation.csv`: processed validation split
|
| 44 |
+
- `test.csv`: processed test split
|
| 45 |
+
- `train_raw.csv`: raw training split
|
| 46 |
+
- `validation_raw.csv`: raw validation split
|
| 47 |
+
- `test_raw.csv`: raw test split
|
| 48 |
+
- `cohort.csv`: identifiers + labels
|
| 49 |
+
- `features.csv`: raw features
|
| 50 |
+
|
| 51 |
+
## Dataset Statistics
|
| 52 |
+
|
| 53 |
+
| Split | N | Negatives | Positives | Positive Rate |
|
| 54 |
+
|---|---:|---:|---:|---:|
|
| 55 |
+
| Train | 71236 | 63286 | 7950 | 0.1116 |
|
| 56 |
+
| Validation | 15265 | 13561 | 1704 | 0.1116 |
|
| 57 |
+
| Test | 15265 | 13562 | 1703 | 0.1116 |
|
| 58 |
+
| Total | 101766 | 90409 | 11357 | 0.1116 |
|
| 59 |
+
|
| 60 |
+
## Data Processing Pipeline
|
| 61 |
+
|
| 62 |
+
- Replaced `"?"` with missing values
|
| 63 |
+
- Created binary label `readmit_30d`
|
| 64 |
+
- Stratified 70/15/15 split
|
| 65 |
+
- Removed identifiers and target columns from features
|
| 66 |
+
- Median imputation for numeric features
|
| 67 |
+
- One-hot encoding for categorical features
|
| 68 |
+
- Aligned feature columns across splits
|
| 69 |
+
|
| 70 |
+
## Intended Use
|
| 71 |
+
|
| 72 |
+
- Clinical prediction modeling
|
| 73 |
+
- Uncertainty quantification
|
| 74 |
+
- Risk-coverage analysis
|
| 75 |
+
- Decision-aware evaluation
|
| 76 |
+
|
| 77 |
+
## Limitations
|
| 78 |
+
|
| 79 |
+
- Retrospective dataset
|
| 80 |
+
- Potential label noise
|
| 81 |
+
- Missing values
|
| 82 |
+
- Class imbalance
|
| 83 |
+
- Limited generalizability
|
| 84 |
|
| 85 |
+
## Ethical Considerations
|
| 86 |
|
| 87 |
+
This dataset is derived from de-identified clinical data and should not be used for clinical decision-making without validation.
|
|
|
|
|
|
|
| 88 |
|
| 89 |
+
## Citation
|
| 90 |
|
| 91 |
+
Please cite the original Kaggle dataset when using this resource.
|