-1

列 col1、col2、col3、col4 を持つ df という名前の Pandas DataFrame 変数があるとします。

sns.catplot() を使用すると、すべて正常に動作します。

fig = sns.catplot(x='col1', y='col2', kind='bar', data=df, col='col3', hue='col4') 

しかし、私が書くとすぐに:

fig.axes[0].get_xlabel()

次のエラーが表示されます。

AttributeError: 'numpy.ndarray' object has no attribute 'get_xlabel'

ax パラメータで sns.barplot() を使用できることはわかっていますが、私の目標は、sns.catplot() を使用し続け、fig.axes[0] から Axes オブジェクトを取得することです。

4

1 に答える 1