March 2020
Beginner to intermediate
352 pages
8h 40m
English
In this section, we are going to analyze white wine and compare it with the red wine analysis from the previous section. Let's start by loading the white wine dataframe:
df_white = pd.read_csv("https://archive.ics.uci.edu/ml/machine-learning-databases/wine-quality/winequality-white.csv", delimiter=";")
This code loads the white wine dataset into the df_white dataframe.
Read now
Unlock full access