Seaborn FactorPlot抛出TypeError

时间:2014-08-12 18:35:38

标签: python matplotlib pandas seaborn

sns.FactorPlot在尝试set_title时给我一个TypeError。这发生在示例数据框架上,但更令人担忧的是,文档中的示例也发生了这种情况。

所以

import seaborn as sns
exercise = sns.load_dataset('exercise')
sns.factorplot("kind", "pulse", "diet", exercise, kind="point")

返回一个长回溯。这是结束:

*/lib/python2.7/site-packages/seaborn/linearmodels.pyc in plot(self, ax)
    275             if hasattr(self.hue, "name"):
    276                 leg.set_title(self.hue.name,
--> 277                               prop={"size": mpl.rcParams["axes.labelsize"]})
    278         ax.xaxis.grid(False)
    279         ax.set_xticks(self.positions)

TypeError: set_title() got an unexpected keyword argument 'prop'

当我在启用了pylab内联的iPython Notebook中运行它时,该图在回溯下方显示正常。但我不明白为什么我会收到此错误,尤其是文档中的示例。

1 个答案:

答案 0 :(得分:2)

这个错误发生在seaborn 0.3.1和matplotlib< 1.2,但可以通过更新matplotlib或seaborn来修复(目前这意味着从github安装seaborn的开发版本)。