Seaborn kutu grafiği, bir matplotlib eksen örneği döndürür. Bir metoda sahip olan pyplot'tan farklı olarak, plt.title()
bir eksen için karşılık gelen argüman ax.set_title()
. Bu nedenle aramanız gerekiyor
sns.boxplot('Day', 'Count', data= gg).set_title('lalala')
Tam bir örnek şöyle olabilir:
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()
Elbette, daha okunaklı hale getirmek için döndürülen eksen örneğini de kullanabilirsiniz:
ax = sns.boxplot('Day', 'Count', data= gg)
ax.set_title('lalala')
ax.set_ylabel('lololo')
set_title()
ve benzer işlevler yokreturn self
, bu düzgün olur.