gpt4 book ai didi

python - Pandas 绘制一组

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

我想绘制以下数据,这是唯一文本的计数

Element              
Motor 1 thermiek 15
tijd te lang 9
Motor 2 thermiek 12
tijd te lang 3
Motor 3 thermiek 5
tijd te lang 4
dtype: int64

by_element = data.groupby('Element')
by_element['Alarm tekst'].value_counts().plot(kind='bar')

代码结果

enter image description here

如何将情节分组为:

enter image description here

最佳答案

这应该可以得到一个类似于评论中链接的分组条形图:

gb = df.groupby(['Element','Alarm tekst'])
gb['Alarm tekst'].count().unstack().plot(kind = 'bar')

聚合栏的原始建议:

您应该包含 agg() 函数来计算总值。

data.groupby('Element').agg('count').plot(kind = 'bar')

如果您的第二列已按术语求和,您可以使用 agg(numpy.sum) 代替:

import numpy    
data.groupby('Element').agg(numpy.sum).plot(kind = 'bar')

关于python - Pandas 绘制一组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29450999/

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