March 2020
Beginner to intermediate
352 pages
8h 40m
English
As mentioned in the Technical requirements section, the dataset can be download from the UCI website directly. Now, let's use the pandas pd.read_csv() method to load the dataset into the Python environment. By now, this operation should be relatively easy and intuitive:
import pandas as pddf_red = pd.read_csv("https://archive.ics.uci.edu/ml/machine-learning-databases/wine-quality/winequality-red.csv", delimiter=";")df_white = pd.read_csv("https://archive.ics.uci.edu/ml/machine-learning-databases/wine-quality/winequality-white.csv", delimiter=";") ...Read now
Unlock full access