我正在使用一些包(webmining、sentiment、openNLP)来提取一些关于股票 JPM 的句子,但运行时出现以下错误:
eval 中的错误(expr、envir、enclos):找不到函数“sentDetect”
这是我使用的代码,我确保安装了所有软件包。我检查了“语料库”变量,它是“包含 20 个文本文档的语料库”。我还使用“library(help=openNLP)”列出了包“openNLP”中的所有函数,但在列表中没有找到“sentDetect”。
library(XML)
library(tm)
library(tm.plugin.webmining)
library(tm.plugin.sentiment)
library(NLP)
library(openNLP)
stock <-"JPM"
corpus <- WebCorpus(GoogleFinanceSource(stock))
sentences <- sentDetect(corpus)
这里是运行环境。它可能与 R 3.0.1 版本(对于 openNLP 来说太新)或 64 位 Windows 系统有关吗?
R 版本 3.0.1 (2013-05-16) -- “Good Sport” 版权所有 (C) 2013 统计计算平台的 R 基金会:x86_64-w64-mingw32/x64(64 位)
非常感谢。
伟宏