Python for Spreadsheet Users
Chris Cardillo
Data Scientist
import seaborn as sns
import matplotlib.pyplot as plt
sns.barplot() - Creates the bar plot plt.show() - Displays the bar plot

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 for Spreadsheet Users