Seaborn中的FacetGrid数据标签

时间:2015-11-16 21:05:20

标签: python pandas seaborn

我在CSV文件中获得了以下虚拟数据:

Player,Month,Score
One,Jan,500
One,Feb,625
One,Mar,700
Two,Jan,300
Two,Feb,275
Two,Mar,1000
Three,Jan,600
Three,Feb,900
Three,Mar,1200

通过Seaborn制作了一个FacetGrid,代码如下:

g = sns.FacetGrid(df, row="Player",col="Month", margin_titles=True)
g.map(sns.barplot, "Month", "Score")

看起来像:

enter image description here

但是,请注意每张图表上的x轴标签是" Mar" (在底部),这是每个播放器的数据集中的最后一个月。这是为什么?如何更改或删除该标签?

1 个答案:

答案 0 :(得分:1)

您应该使用factorplot来处理一些重要的簿记,了解哪些值需要出现在每个方面:

sns.factorplot(x="Month", y="Score",
               row="Player", col="Month", data=df,
               margin_titles=True, kind="bar")

enter image description here