如何设置seaborn boxplot的y轴范围?

时间:2015-10-20 03:26:04

标签: python matplotlib boxplot seaborn

official seaborn documentation,我了解到您可以创建如下框图:

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]之内。有没有简单的方法呢?

1 个答案:

答案 0 :(得分:35)

这是标准的matplotlib.pyplot:

[body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n", boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"oauth_token\"\r\n\r\n%@", self.scToken] dataUsingEncoding:NSUTF8StringEncoding]];

或更简单,正如mwaskom评论如下:

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

enter image description here