親愛なる Stackoverlow クラウド
qdap 極性関数を使用して、sentiWS に基づいて独自の辞書を読み込んで、いくつかのブログ エントリの極性を計算することができました。現在、単一の単語だけでなく、フレーズも含む新しい感情辞書 ( SePL ) があります。たとえば、「simply good」の場合、「simply」は否定語でも増幅語でもありませんが、より正確になります。それで、qdapの極性機能を使用してngramを検索できるかどうか疑問に思っていました。
例として:
library(qdap)
phrase <- "This is simply the best"
key <- sentiment_frame(c("simply", "best", "simply the best"), "", c(0.1,0.3,0.8))
counts(polarity(phrase, polarity.frame=key))
与えます:
all wc polarity pos.words neg.words text.var
1 all 5 0.179 simply, best - This is simply the best
ただし、次のような出力を取得したいと思います。
all wc polarity pos.words neg.words text.var
1 all 5 0.76 simply the best - This is simply the best
誰でもそのように機能させる方法を考えていますか?
万歳、ベン