Diabetes Dataset
Predicting Diabetes Onset Based on Diagnostic Measures
@kaggle.hasibur013_diabetes_dataset
Predicting Diabetes Onset Based on Diagnostic Measures
@kaggle.hasibur013_diabetes_dataset
This dataset provides detailed medical diagnostic measurements that were collected to predict the onset of diabetes based on several health factors. It consists of 768 records of female patients, each characterized by 8 health-related attributes. The Outcome variable indicates whether the patient has diabetes (1) or not (0). The dataset can be used to train and test machine learning models for classification tasks related to diabetes prediction.
This dataset can be used for:
This dataset is originally adapted from the National Institute of Diabetes and Digestive and Kidney Diseases (NIDDK) and is widely used in machine learning research on healthcare and medical diagnostics.
CREATE TABLE diabetes_dataset (
"pregnancies" BIGINT,
"glucose" BIGINT,
"bloodpressure" BIGINT,
"skinthickness" BIGINT,
"insulin" BIGINT,
"bmi" DOUBLE,
"diabetespedigreefunction" DOUBLE,
"age" BIGINT,
"outcome" BIGINT
);Anyone who has the link will be able to view this.