The data contains no missing values and consist of only numeric data, with a
three class target variable (Type) for classification.
Data frame (tibble) of 178 observations of 13 variables, target
class Type
and 12 numeric variables:
Type, The type of wine, into one of three classes, 1 (59 obs),
2(71 obs), and 3 (48 obs).
Alcohol, Alcohol
Malic, Malic acid
Ash, Ash
Alcalinity, Alcalinity of ash
Magnesium, Magnesium
Phenols, Total phenols
Flavanoids, Flavanoids
Nonflavanoids, Nonflavanoid phenols
Proanthocyanins, Proanthocyanins
Color, Color intsity
Hue, Hue
Dilution, D280/OD315 of diluted wines
Proline, Proline
Reproducing this dataset:
library("rattle.data")
wine <- dplyr::as.tibble(wine)