我试图从Syuzhet R包中调用Stanford情绪分析仪。我按照参考手册中的说明和Cran网站的小插图进行操作。我在我的机器上安装了Stanford CoreNLP软件包,它可以很好地独立运行。但是,当我从R调用斯坦福情绪分析仪时,我得到以下错误:
系统错误(cmd,input = text_vector,intern = TRUE,ignore.stderr = TRUE):找不到'cd'。
我在网上搜索,但找不到解决方案。这是我的代码:
library(syuzhet)
test <- c("I am a very happy person.", "I am a very sad person.")
tagger_path <- "C:/Users/sqchen/Documents/R/stanford-corenlp-full-2015-12-09"
stanford_vector <- get_sentiment(test, method="stanford", tagger_path)
调用替代方法 get_stanford_sentiment 给出了一些错误。感谢您的帮助。