使用R进行基于方面的情感分析

时间:2019-10-12 20:12:14

标签: r sentiment-analysis

我想在R中找到方面或实体的情感。我的第一步是获取依赖树并找到名词和形容词。 我的问题是如何找到实体的情感分数?在这里,我正在R中使用Udpipe库。下面是我用来获取依赖关系树的代码。我不确定如何进一步处理代码:

ud_model <- udpipe_download_model(language = "english")
ud_model <- udpipe_load_model(ud_model$file_model)

text <- c("government is not good","Samsung is not as good as Nokia", "Stay was comfortable, price
           is very high, service is descent")  
y <- udpipe_annotate(ud_model, x = text, parallel.cores = 4)
y <- as.data.frame(y)

您能用R代码帮助我找到以下实体的情感得分吗?

  Entities     Sentiments score
1.government          ???
2.Samsung             ???
3.Nokia               ???
4.Stay                ???
5.price               ???
6.service             ???

预先感谢您的指导!!

0 个答案:

没有答案