我想在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 ???
预先感谢您的指导!!