gpt4 book ai didi

python - 在时间轴上绘制离散组计数

转载 作者:太空宇宙 更新时间:2023-11-03 14:16:17 24 4
gpt4 key购买 nike

我有一个像这样的数据框:

    date          kind  count
2015-08-31 1 1
2015-10-31 1 1
2015-12-31 1 7
2015-12-31 5 2
2015-12-31 2 1
2015-12-31 3 1
2016-01-31 1 11
2016-01-31 2 3
2016-01-31 5 3
2016-01-31 4 2
2016-01-31 3 1

日期是从 TimeGrouper groupby 中获取的,因此所有“年 x 月”组合对于每种类型都是唯一的。

我想生成一个因子图,沿着时间轴绘制每月的计数,按种类分割,类似于这个,我用的是种类而不是甲板: Bidimensional Counting using Seaborn来自Seaborn Documentation

已关注 this question's suggestion ,我这样做了:

sns.factorplot(x='date', y='kind', data=data, kind='bar')

这引发了错误:

TypeError: ufunc add cannot use operands with types dtype('<M8[ns]') and dtype('<M8[ns]')

所以,我的问题是:是否可以使用 Seaborn 一次生成所有图表?如果没有,有没有简单的方法?

最佳答案

这是您需要的吗?

sns.factorplot(x='date', y='count', data=data, kind='bar',col='kind')

enter image description here

关于python - 在时间轴上绘制离散组计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48219684/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com