使用COL参数的折线图

时间:2014-12-02 02:29:03

标签: python matplotlib pandas seaborn

使用seaborn的新手,并希望指定一个简单而漂亮的(为什么我使用seaborn)线图。

特别是我正在使用Seaborn,因为我的理解是你可以为seaborn col =参数提供一个列名,它将为该列中的每个唯一值创建一个图。

seaborn documentation

month_name包含月份名称,例如Jan,Feb,Mar但我收到错误:

"Could not convert OctoberJuneJulyAugustSeptember to numeric"

我的代码为month_name的每个出现(即Jan,Feb等)绘制图表

其中person_name在X轴上,而Revenue在Y轴上获得。因此,由于有几个月我希望下面生成一个12图形网格(6x6)。

sns.lmplot("person_name", "revenue", df, col="month_date", palette="Set1", fit_reg=False);

更新

现在出现错误: ValueError:第一个参数必须是一个序列我从左到右依次获得5个空白图,其中没有任何内容。我假设第一个参数是指X变量 - > “人名”?但是如何将列(person_name)组成一个序列?

enter image description here

0 个答案:

没有答案