実行したいこと
こちらの記事を参考にして
テキストデータtitle2.csv(1列19000行)に対して
単語の頻出度のカウント、特定の品詞の単語の抽出、辞書リストを取り出し降順に並び替え、そしてcsvファイルとして出力をしたいです。
実行するとエラーが出てしまいました。
初心者すぎてどのように修正したらいいかわかりません。どうかお力添え願います。
エラー内容
TypeError Traceback (most recent call last) <ipython-input-29-f5f0d62ae92a> in <module> 18 mecab = MeCab.Tagger() 19 mecab.parse('') ---> 20 node = mecab.parseToNode(text) 21 22 while node: TypeError: in method 'Tagger_parseToNode', argument 2 of type 'char const *'
該当コード
python
1import MeCab 2import csv 3 4wordFreq_dic = {} 5wordcount_output = [] 6text = "" 7 8#解析テキスト 9with open("title2.csv", "r", newline='' , encoding = "utf-8") as rf: 10 readaer = csv.reader(rf) 11 12#単語頻出度カウント 13def WordFrequencyCount(word): 14 if word in wordFreq_dic: 15 wordFreq_dic[word] +=1 16 17 else: 18 wordFreq_dic.setdefault(word, 1) 19 return wordFreq_dic 20 21#特定の品詞の単語を抽出 22mecab = MeCab.Tagger() 23mecab.parse('') 24node = mecab.parseToNode(text) 25 26while node: 27 if node.feature.split(",")[0] == "名詞": 28 word = node.surface 29 WordFrequencyCount(word) 30 elif node.feature.split(",")[0] =="動詞": 31 word = node.surface 32 WordFrequencyCount(word) 33 elif node.feature.split(",")[0] == "形容詞": 34 word = node.surface 35 WordFrequencyCount(word) 36 elif node.feature.split(",")[0] == "形容動詞": 37 word = node.surface 38 WordFrequencyCount(word) 39 else:pass 40 node = node.next 41 42#辞書リストを取り出し、降順に並び替え 43for item in wordFreq_dic.items(): 44 wordcount_output.append(item) 45wordcount_output = sorted(wordcount_output, key = lambda x:x[1], reverse=True) 46 47#CSV出力 48with open("wordcount_dic.csv", "w", encoding="utf-8") as f: 49 writer = csv.writer(f, lineterminator="\n") 50 writer.writerows(wordcount_output)