gpt4 book ai didi

python - 为表中的键创建计数的快速方法

转载 作者:太空宇宙 更新时间:2023-11-04 01:25:47 26 4
gpt4 key购买 nike

我在多个文本提取物中有一个特定单词的 pandas 系列单词频率,例如10, 5, 10, 5, 3, 3, 2, 1... 并想生成一个包含 2 个列的表格,其中我希望将单词频率作为键以及该频率针对它出现的次数。

然后我想将其绘制为条形图。

如何在 iPython 中使用 python/pandas 执行此操作?

提前致谢。

最佳答案

pandas 中你可以这样做

from string import ascii_letters as letters
from numpy.random import randint
from numpy import array

from pandas import Series

n = 1000
ltrs = Series(array(list(letters))[randint(len(letters), size=n)])
ltrs.value_counts().value_counts().plot(kind='bar')

得到

enter image description here

第一个 value_counts() 给出字母的频率,第二个给出字母频率的频率,然后将其绘制为条形图。

关于python - 为表中的键创建计数的快速方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18060295/

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