Python dành cho người dùng bảng tính
Chris Cardillo
Data Scientist
sns.barplot(x='store', y='revenue', data=totals)
plt.show()

sns.barplot(x='store',
y='revenue',
data=totals)
# Thêm tiêu đề
# Thêm nhãn trục x
# Thêm nhãn trục y
plt.show()

sns.barplot(x='store',
y='revenue',
data=totals)
plt.title('Revenue by Store')
# Thêm nhãn trục x
# Thêm nhãn trục y
plt.show()

sns.barplot(x='store',
y='revenue',
data=totals)
plt.title('Revenue by Store')
plt.xlabel('Store')
# Thêm nhãn trục y
plt.show()

sns.barplot(x='store',
y='revenue',
data=totals)
plt.title('Revenue by Store')
plt.xlabel('Store')
plt.ylabel('Revenue (USD)')
plt.show()

sns.barplot(x='store',
y='revenue',
data=totals)
plt.title('Revenue by Store')
plt.xlabel('Store')
plt.ylabel('Revenue (USD)')
sns.despine()
plt.show()

sns.set_style('whitegrid')
sns.barplot(x='store',
y='revenue',
data=totals)
plt.title('Revenue by Store')
plt.xlabel('Store')
plt.ylabel('Revenue (USD)')
sns.despine()
plt.show()



Python dành cho người dùng bảng tính