1. ホーム
  2. python

[解決済み】Seaborn Barplotで軸にラベルを付ける。

2022-04-17 16:35:09

質問

以下のコードで、Seabornの棒グラフに独自のラベルを使おうとしています。

import pandas as pd
import seaborn as sns

fake = pd.DataFrame({'cat': ['red', 'green', 'blue'], 'val': [1, 2, 3]})
fig = sns.barplot(x = 'val', y = 'cat', 
                  data = fake, 
                  color = 'black')
fig.set_axis_labels('Colors', 'Values')

しかし、次のようなエラーが発生します。

AttributeError: 'AxesSubplot' object has no attribute 'set_axis_labels'

どうする?

解決方法は?

Seabornのbarplotはaxis-objectを返します(図ではありません)。つまり、次のようなことができます。

import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt

fake = pd.DataFrame({'cat': ['red', 'green', 'blue'], 'val': [1, 2, 3]})
ax = sns.barplot(x = 'val', y = 'cat', 
              data = fake, 
              color = 'black')
ax.set(xlabel='common xlabel', ylabel='common ylabel')
plt.show()