Python dành cho người dùng bảng tính
Chris Cardillo
Data Scientist
import seaborn as sns
import matplotlib.pyplot as plt
sns.barplot() - Tạo biểu đồ cột plt.show() - Hiển thị biểu đồ

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 dành cho người dùng bảng tính