Diabetes Dataset
The data consist of medical information, laboratory analysis of Diabetes patient
@kaggle.aravindpcoder_diabetes_dataset
The data consist of medical information, laboratory analysis of Diabetes patient
@kaggle.aravindpcoder_diabetes_dataset
Diabetes is an opportune disease which has large wealth of data available and has with it huge complications. There is a need for a better and a more accurate approach in the diagnosis of the disease
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). Patients' files were taken and data extracted from them and entered in to the database to construct the diabetes dataset. The data consist of medical information, laboratory analysis. The data attribute are:
The data consist of medical information, laboratory analysis… etc. The data that have been entered initially into the system are: No. of Patient, Sugar Level Blood, Age, Gender, Creatinine ratio(Cr), Body Mass Index (BMI), Urea, Cholesterol (Chol), Fasting lipid profile, including total, LDL, VLDL, Triglycerides(TG) and HDL Cholesterol , HBA1C, Class (the patient's diabetes disease class may be Diabetic, Non-Diabetic, or Predict-Diabetic).
CREATE TABLE dataset_of_diabetes (
"id" BIGINT,
"no_pation" BIGINT,
"gender" VARCHAR,
"age" BIGINT,
"urea" DOUBLE,
"cr" BIGINT,
"hba1c" DOUBLE,
"chol" DOUBLE,
"tg" DOUBLE,
"hdl" DOUBLE,
"ldl" DOUBLE,
"vldl" DOUBLE,
"bmi" DOUBLE,
"class" VARCHAR
);Anyone who has the link will be able to view this.