计算(和写入)文本文件中每行的字频率

时间:2011-04-08 13:14:57

标签: python loops nltk filewriter

第一次在堆栈中发帖 - 总是发现以前的问题足以解决我的问题!我遇到的主要问题是逻辑......即使是伪代码答案也会很棒。

我正在使用python从文本文件的每一行读取数据,格式为:

This is a tweet captured from the twitter api #hashtag http://url.com/site

使用nltk,我可以逐行标记,然后可以使用reader.sents()来迭代等等:

reader = TaggedCorpusReader(filecorpus, r'.*\.txt', sent_tokenizer=Line_Tokenizer())

reader.sents()[:10]

但我想计算每行某些“热词”(存储在数组或类似词中)的频率,然后将它们写回文本文件。如果我使用reader.words(),我可以计算整个文本中“热词”的频率,但我正在寻找每行的数量(或者在这种情况下为“句子”)。

理想情况下,如:

hotwords = (['tweet'], ['twitter'])

for each line
     tokenize into words.
     for each word in line 
         if word is equal to hotword[1], hotword1 count ++
         if word is equal to hotword[2], hotword2 count ++
     at end of line, for each hotword[index]
         filewrite count,

另外,不要担心URL被破坏(使用WordPunctTokenizer会删除标点符号 - 这不是问题)

任何有用的指针(包括伪或其他类似代码的链接)都会很棒。

----编辑------------------

结束了这样的事情:

import nltk
from nltk.corpus.reader import TaggedCorpusReader
from nltk.tokenize import LineTokenizer
#from nltk.tokenize import WordPunctTokenizer
from collections import defaultdict

# Create reader and generate corpus from all txt files in dir.
filecorpus = 'Twitter/FINAL_RESULTS/tweetcorpus'
filereader = TaggedCorpusReader(filecorpus, r'.*\.csv', sent_tokenizer=LineTokenizer())
print "Reader accessible." 
print filereader.fileids()

#define hotwords
hotwords = ('cool','foo','bar')

tweetdict = []

for line in filereader.sents():
wordcounts = defaultdict(int)
    for word in line:
        if word in hotwords:
            wordcounts[word] += 1
    tweetdict.append(wordcounts)

输出是:

print tweetdict

[defaultdict(<type 'dict'>, {}),
 defaultdict(<type 'int'>, {'foo': 2, 'bar': 1, 'cool': 2}),
 defaultdict(<type 'int'>, {'cool': 1})]

3 个答案:

答案 0 :(得分:4)

from collections import Counter

hotwords = ('tweet', 'twitter')

lines = "a b c tweet d e f\ng h i j k   twitter\n\na"

c = Counter(lines.split())

for hotword in hotwords:
    print hotword, c[hotword]

此脚本适用于python 2.7 +

答案 1 :(得分:1)

defaultdict是你这方面的朋友。

from collections import defaultdict
for line in myfile:
    # tokenize
    word_counts = defaultdict(int)
    for word in line:
        if word in hotwords:
            word_counts[word] += 1
    print '\n'.join('%s: %s' % (k, v) for k, v in word_counts.items())

答案 2 :(得分:0)

你需要将其标记化吗?您可以为每个单词的每一行使用count()

hotwords = {'tweet':[], 'twitter':[]}
for line in file_obj:
    for word in hotwords.keys():
        hotwords[word].append(line.count(word))