在R中合并两个语料库

时间:2017-06-16 10:06:36

标签: r merge corpus

我试图通过使用R.组合两个语料库但是它给了我一个错误, “错误:无法找到函数”positiveCorpus.merge_with“。我是R Programming的新手。你能帮我解决一下这个错误。

代码:

createCorpus <- function(dirPath) {
 a  <-Corpus(DirSource(dirPath), readerControl = list(language="en"))
a <- tm_map(a, removeNumbers)
  a <- tm_map(a, removePunctuation)
  a <- tm_map(a , stripWhitespace)
  a <- tm_map(a, tolower)
  a <- tm_map(a, removeWords, c("movie","films","film", stopwords("english")))
return(a)
}
positiveCorpus <- createCorpus("D:/txt1/pos")
negCorpus <- createCorpus("D:/txt2/neg")
library(itertools)
mergeCorpus=positiveCorpus.merge_with(negCorpus)

0 个答案:

没有答案