1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/VIM-package.R
\docType{data}
\name{diabetes}
\alias{diabetes}
\title{Indian Prime Diabetes Data}
\format{
A data frame with 768 observations on the following 9 variables.
\describe{
\item{Pregnancies}{Number of times pregnant}
\item{Glucose}{Plasma glucose concentration a 2 hours in an oral glucose tolerance test}
\item{BloodPressure}{Diastolic blood pressure (mm Hg)}
\item{SkinThickness}{Triceps skin fold thickness (mm)}
\item{Insulin}{2-Hour serum insulin (mu U/ml)}
\item{BMI}{Body mass index (weight in kg/(height in m)^2)}
\item{DiabetesPedigreeFunction}{Diabetes pedigree function}
\item{Age}{Age in years}
\item{Outcome}{Diabetes (yes or no)}
}
}
\source{
\url{https://www.kaggle.com/uciml/pima-indians-diabetes-database/data}
}
\description{
The datasets consists of several medical predictor variables and
one target variable, Outcome. Predictor variables includes the number of pregnancies
the patient has had, their BMI, insulin level, age, and so on.
}
\details{
This dataset is originally from the National Institute of Diabetes and
Digestive and Kidney Diseases. The objective of the dataset is to
diagnostically predict whether or not a patient has diabetes, based
on certain diagnostic measurements included in the dataset.
Several constraints were placed on the selection of these instances
from a larger database. In particular, all patients here are females
at least 21 years old of Pima Indian heritage.
}
\examples{
data(diabetes)
aggr(diabetes)
}
\references{
Smith, J.W., Everhart, J.E., Dickson, W.C., Knowler, W.C., & Johannes, R.S. (1988).
Using the ADAP learning algorithm to forecast the onset of diabetes mellitus.
In Proceedings of the Symposium on Computer Applications and Medical Care (pp. 261--265). IEEE Computer Society Press.
}
\keyword{datasets}
|