White Wine Quality
Comprehensive Data for Predicting Quality of White Wines - Includes Chemical Att
@kaggle.dakshbhalala_uci_white_wine
Comprehensive Data for Predicting Quality of White Wines - Includes Chemical Att
@kaggle.dakshbhalala_uci_white_wine
This dataset contains detailed information about the chemical properties and quality ratings of white wines. It is intended for use in predictive modeling and data analysis. Derived from the work of Cortez et al. (2009), the dataset explores wine quality through data mining of physicochemical properties, making it suitable for both regression and classification tasks in machine learning.
The dataset includes frequency distributions for each feature, with counts in specified ranges. For example:
This dataset is publicly available for research purposes. Please include the following citation if you use this dataset:
P. Cortez, A. Cerdeira, F. Almeida, T. Matos, and J. Reis. (2009). Modeling wine preferences by data mining from physicochemical properties. Decision Support Systems, 47(4), 547-553. ISSN: 0167-9236. Available at: Elsevier | Pre-press (pdf) | bib
The dataset has been used in the research by Cortez et al. (2009) to model wine preferences based on physicochemical properties. The study involved applying various data mining methods, including support vector machines, to predict wine quality. Metrics such as MAD and confusion matrix for fixed error tolerance were computed.
For detailed information, refer to Cortez et al., 2009.
CREATE TABLE winequality_white (
"fixed_acidity" DOUBLE,
"volatile_acidity" DOUBLE,
"citric_acid" DOUBLE,
"residual_sugar" DOUBLE,
"chlorides" DOUBLE,
"free_sulfur_dioxide" DOUBLE,
"total_sulfur_dioxide" DOUBLE,
"density" DOUBLE,
"ph" DOUBLE,
"sulphates" DOUBLE,
"alcohol" DOUBLE,
"quality" BIGINT
);Anyone who has the link will be able to view this.