Python voor spreadsheetgebruikers
Chris Cardillo
Data Scientist
import seaborn as sns
import matplotlib.pyplot as plt
sns.barplot() - Maakt het staafdiagram plt.show() - Toont het diagram

sns.barplot(x='store', y='revenue', data=totals)
sns.barplot(x='store', y='revenue', data=totals)
plt.show()

sns.barplot(x='store', y='revenue', data=totals)
plt.savefig('awesome_plot.png')
Python voor spreadsheetgebruikers