스프레드시트 사용자를 위한 Python
Chris Cardillo
Data Scientist
sns.barplot(x='store', y='revenue', data=totals)
plt.show()

sns.barplot(x='store',
y='revenue',
data=totals)
# 제목 추가
# x축 레이블 추가
# y축 레이블 추가
plt.show()

sns.barplot(x='store',
y='revenue',
data=totals)
plt.title('Revenue by Store')
# x축 레이블 추가
# y축 레이블 추가
plt.show()

sns.barplot(x='store',
y='revenue',
data=totals)
plt.title('Revenue by Store')
plt.xlabel('Store')
# 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