October 2018
Beginner to intermediate
676 pages
18h 30m
English
The following is the code block that plots three box plots, one for each of the attributes:
wine_quality = pd.read_csv('winequality.csv', delimiter=';')
data = [wine_quality['alcohol'], wine_quality['fixed acidity'], wine_quality['quality']]
plt.boxplot(data)
plt.show()
Read now
Unlock full access