Diabetes Classification Dataset
Pima Indians Diabetes Database
@kaggle.danushkumarv_diabetes_dataset
Pima Indians Diabetes Database
@kaggle.danushkumarv_diabetes_dataset
Title: Pima Indians Diabetes Database
Sources:
(a) Original owners: National Institute of Diabetes and Digestive and
Kidney Diseases
(b) Donor of database: Vincent Sigillito (vgs@aplcen.apl.jhu.edu)
Research Center, RMI Group Leader
Applied Physics Laboratory
The Johns Hopkins University
Johns Hopkins Road
Laurel, MD 20707
(301) 953-6231
(c) Date received: 9 May 1990
Past Usage:
The diagnostic, binary-valued variable investigated is whether the
patient shows signs of diabetes according to World Health Organization
criteria (i.e., if the 2 hour post-load plasma glucose was at least
200 mg/dl at any survey examination or if found during routine medical
care). The population lives near Phoenix, Arizona, USA.
Results: Their ADAP algorithm makes a real-valued prediction between
0 and 1. This was transformed into a binary decision using a cutoff of
0.448. Using 576 training instances, the sensitivity and specificity
of their algorithm was 76% on the remaining 192 instances.
Author: Vincent Sigillito
Source: Obtained from UCI
Please cite: UCI citation policy
CREATE TABLE diabetes_dataset (
"preg" BIGINT,
"plas" BIGINT,
"pres" BIGINT,
"skin" BIGINT,
"insu" BIGINT,
"mass" DOUBLE,
"pedi" DOUBLE,
"age" BIGINT,
"class" VARCHAR
);Anyone who has the link will be able to view this.