如何为海运箱线图设置 y 轴的范围?

正式的海运文件中,我了解到你可以创建如下的箱线图:

import seaborn as sns
sns.set_style("whitegrid")
tips = sns.load_dataset("tips")
ax = sns.boxplot(x="day", y="total_bill", data=tips)

Seaborn Boxplot Example

我的问题是: 如何限制这个图的 y 轴的范围?例如,我希望 y 轴在[10,40]内。有什么简单的方法吗?

221375 次浏览

It is standard matplotlib.pyplot:

...
import matplotlib.pyplot as plt
plt.ylim(10, 40)

Or simpler, as mwaskom comments below:

ax.set(ylim=(10, 40))

enter image description here