Seaborn Barplotの軸にラベルを付ける
次のコードを使用して、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' 何ができますか?