実行したいこと
こちらの記事を参考にして
テキストデータinput.csv(1列19000行)に対して
単語の頻出度のカウント、特定の品詞の単語の抽出、辞書リストを取り出し降順に並び替え、そしてcsvファイルとして出力をしたいです。
実行するとエラーが出てしまいました。
おそらく文法がおかしいはずですが、初心者すぎてどのように修正したらいいかわかりません。どうかお力添え願います。
エラー内容
File "<ipython-input-25-3cd67150d66f>", line 44 with open("wordcount_dic.csv", "w", encoding="utf-8) as f: ^ SyntaxError: EOL while scanning string literal
該当コード
python
1wordFreq_dic = {} 2wordcount_output = [] 3 4#解析テキスト 5with open("input.csv", "r", newline='' , encoding = "utf-8") as rf: 6 reader = csv.reader(rf) 7 8#単語頻出度カウント 9def WordFrequencyCount(word): 10 if word in wordFreq_dic: 11 wordFreq_dic[word] +=1 12 13 else: 14 wordFreq_dic.setdefault(word, 1) 15 return wordFreq_dic 16 17#特定の品詞の単語を抽出 18mecab = MeCab.Tagger() 19mecab.parse('') 20node = mecab.parseToNode(text) 21 22while node: 23 if node.feature.split(",")[0] == "名詞": 24 word = node.surface 25 WordFrequencyCount(word) 26 elif node.feature.split(",")[0] =="動詞": 27 word = node.surface 28 WordFrequencyCount(word) 29 elif node.feature.split(",")[0] == "形容詞": 30 word = node.surface 31 WordFrequencyCount(word) 32 elif node.feature.split(",")[0] == "形容動詞": 33 word = node.surface 34 WordFrequencyCount(word) 35 else:pass 36 node = node.next 37 38#辞書リストを取り出し、降順に並び替え 39for item in wordFreq_dic.items(): 40 wordcount_output.append(item) 41wordcount_output = sorted(wordcount_output, key = lambda x:x[1], reverse=True) 42 43#CSV出力 44with open("wordcount_dic.csv", "w", encoding="utf-8) as f: 45 writer = csv.writer(f, lineterminator="\n") 46 writer.writerows(wordcount_output)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。