ฉันพยายามใช้ป้ายกำกับของตัวเองสำหรับ Seaborn barplot ด้วยรหัสต่อไปนี้:
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
ไม่มีวิธีของตัวเองในการตั้งค่าเหล่านี้ - โดยไม่เกี่ยวข้องกับmatplotlib
?