स्प्रेडशीट उपयोगकर्ताओं के लिए Python
Chris Cardillo
Data Scientist
import seaborn as sns
import matplotlib.pyplot as plt
sns.barplot() - बार प्लॉट बनाता हैplt.show() - बार प्लॉट दिखाता है

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