Seaborn box plot ส่งคืนอินสแตนซ์แกน matplotlib ซึ่งแตกต่างจาก pyplot ตัวเองซึ่งมีวิธีการอาร์กิวเมนต์ที่สอดคล้องกันสำหรับแกนเป็นplt.title()
ax.set_title()
ดังนั้นคุณต้องโทร
sns.boxplot('Day', 'Count', data= gg).set_title('lalala')
ตัวอย่างที่สมบูรณ์จะเป็น:
import seaborn as sns
import matplotlib.pyplot as plt
tips = sns.load_dataset("tips")
sns.boxplot(x=tips["total_bill"]).set_title("LaLaLa")
plt.show()
Of course you could also use the returned axes instance to make it more readable:
ax = sns.boxplot('Day', 'Count', data= gg)
ax.set_title('lalala')
ax.set_ylabel('lololo')
set_title()
and similar functions do notreturn self
, that would be neat.