【问题标题】:Unable to Plot Zipf's Distribution Graph无法绘制 Zipf 的分布图
【发布时间】:2019-11-21 22:35:52
【问题描述】:

我是 python 和机器学习的新手。我想为文本文件绘制 Zipf 的分布图。但是我的代码给出了错误。 以下是我的python代码

import re
from itertools import islice
#Get our corpus of medical words
frequency = {}
list(frequency)
open_file = open("abp.csv", 'r')
file_to_string = open_file.read()
words = re.findall(r'(\b[A-Za-z][a-z]{2,9}\b)', file_to_string)

#build dict of words based on frequency
for word in words:
    count = frequency.get(word,0)
    frequency[word] = count + 1


#limit words to 1000
n = 1000
frequency = {key:value for key,value in islice(frequency.items(), 0, n)}
#convert value of frequency to numpy array
s = frequency.values()
s = np.array(s)

#Calculate zipf and plot the data
a = 2. #  distribution parameter
count, bins, ignored = plt.hist(s[s<50], 50, normed=True)
x = np.arange(1., 50.)
y = x**(-a) / special.zetac(a)
plt.plot(x, y/max(y), linewidth=2, color='r')
plt.show()

上面的代码给出了以下错误: 计数,箱,忽略 = plt.hist(s[s

TypeError: 'dict_values' 和 'int' 的实例之间不支持'

【问题讨论】:

    标签: python machine-learning nlp zipf


    【解决方案1】:

    numpy 数组 s 实际上由一个 dict_values 对象组成。要将值转换为包含 dict_values 的数字的 numpy 数组,请使用

    import numpy as np
    
    frequency = {key:value for key,value in islice(frequency.items(), 0, n)}
    s = np.fromiter(frequency.values(), dtype=float)
    

    假设,您希望您的数组由 floats 组成。

    如需更多信息,请阅读docs

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2015-04-07
      • 1970-01-01
      • 2017-05-17
      • 1970-01-01
      • 2017-05-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多