我創建一個箱線爲波紋管如何保存圖片箱線圖seaborn
import seaborn as sns
sns.set_style("whitegrid")
tips = sns.load_dataset("tips")
ax = sns.boxplot(x=tips["total_bill"])
&儘量節省
sns.boxplot.savefig('ax.png')
或
ax.savefig('ax.png')
但
AttributeError: 'AxesSubplot' object has no attribute 'savefig'
這是surprisely,東陽它是lmplot等正確....
thanx很多@Goyo – Edward