Ankur's Beer Data Set
Brewing Process Data Set
@kaggle.ankurnapa_ankurs_beer_data_set
Brewing Process Data Set
@kaggle.ankurnapa_ankurs_beer_data_set
I created this data with my own 10+ years of Beer Brewing Experience.
In this dataset, there are the following columns:
Brew No. - Batch Id number
OG- Original Gravity (amount of fermentable sugar present in wort before fermentation)
ABV - Alcohol by volume in final beer before packaging
pH - is a measure of how acidic/basic beer is before packaging
IBU - is an abbreviation for the International Bitterness Units scale, a gauge of beer's bitterness
style -is a term used to differentiate and categorize beers by various factors, including appearance, flavour, ingredients, production method, history, or origin. In the dataset, we have 3 beer styles.
The career transition journey from a brewer to the data science field inspired me to upload the dataset over here.
CREATE TABLE beer (
"brew_no" BIGINT -- Brew No.,
"og" DOUBLE,
"abv" DOUBLE,
"ph" DOUBLE,
"ibu" DOUBLE,
"style" VARCHAR
);
Anyone who has the link will be able to view this.