ipython笔记本boxplot在某些计算机上没有显示异常值

时间:2014-12-12 04:48:19

标签: ipython boxplot seaborn

当在一台笔记本电脑(Windows 7)上使用seaborn进行ipython笔记本内联插箱时,该图将显示异常值。但是,在我的Macbook和Windows 10桌面上执行相同的代码时,不会显示异常值。我的代码是:

sns.set_context("talk", font_scale=1)

sns.boxplot(diff.pay_ratio, groupby=diff.status)

1 个答案:

答案 0 :(得分:1)

这里讨论了matplotlib使用边缘宽度参数的问题: {{3P>

对我有用的修复方法是重置错误的matplotlib参数。

matplotlib.rc("lines", markeredgewidth=0.5)