Python per chi usa i fogli di calcolo
Chris Cardillo
Data Scientist
import seaborn as sns
import matplotlib.pyplot as plt
sns.barplot() - Crea il grafico a barre plt.show() - Mostra il grafico

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 per chi usa i fogli di calcolo