A diabetes dataset on 1,000 patients.
Format
A data frame with 1,000 rows and 14 variables:
IDUnique identifier for each patient (unitless).
No_PationPatient number (unitless).
GenderCategorical variable (Female, Male).
AGEYears (age of the person).
UreaChief nitrogenous end product of the metabolic breakdown of proteins in milligrams per deciliter (mg/dL).
CrCreatinine ratio (Cr) (mg/dL).
HbA1cHemoglobin A1c (HbA1c) % (percentage).
CholCholesterol (Chol) (mg/dL).
TGTriglycerides (TG) (mg/dL).
HDLHigh-density lipoprotein (HDL) (mg/dL).
LDLLow-density lipoprotein (LDL) (mg/dL).
VLDLVery-low-density lipoprotein (VLDL) (mg/dL).
BMIBody mass index (BMI).
CLASSClass (the patient's diabetes disease class may be Diabetic, Non-Diabetic, or Predict-Diabetic).
Details
The data were collected from the Iraqi society, as they data were acquired from the laboratory of Medical City Hospital and (the Specializes Center for Endocrinology and Diabetes-Al-Kindy Teaching Hospital).
Examples
data(diabetes)
knitr::kable(head(diabetes,5),caption="Five individuals in diabetes data")
#>
#>
#> Table: Five individuals in diabetes data
#>
#> | ID| No_Pation|Gender | AGE| Urea| Cr| HbA1c| Chol| TG| HDL| LDL| VLDL| BMI|CLASS |
#> |---:|---------:|:------|---:|----:|--:|-----:|----:|---:|---:|---:|----:|---:|:-----|
#> | 502| 17975|F | 50| 4.7| 46| 4.9| 4.2| 0.9| 2.4| 1.4| 0.5| 24|N |
#> | 735| 34221|M | 26| 4.5| 62| 4.9| 3.7| 1.4| 1.1| 2.1| 0.6| 23|N |
#> | 420| 47975|F | 50| 4.7| 46| 4.9| 4.2| 0.9| 2.4| 1.4| 0.5| 24|N |
#> | 680| 87656|F | 50| 4.7| 46| 4.9| 4.2| 0.9| 2.4| 1.4| 0.5| 24|N |
#> | 504| 34223|M | 33| 7.1| 46| 4.9| 4.9| 1.0| 0.8| 2.0| 0.4| 21|N |