在R中对单词进行分组以创建类别

时间:2015-07-31 18:51:28

标签: r text-mining tm word-cloud

大家好,感谢您的帮助。我使用R 3.1.3创建比较云,我想将某些单词分组。示例:更容易和轻松将分组轻松。我正在使用tm包,这是我的代码,但它不起作用。我仍然看到我试图转换的话。

lines.corp <- Corpus(VectorSource(all)) #converting data frame to a Corpus#
########################################################################
lines.corp2 <- lines.corp
toString <- content_transformer(function(x, from, to) gsub(from, to, x))
lines.corp2 <- tm_map(lines.corp2, toString, "ease", "easy")
lines.corp2 <- tm_map(lines.corp2, toString, "easier", "easy")
lines.corp2 <- tm_map(lines.corp2, toString, "convenience", "convenient")
lines.corp2 <- tm_map(lines.corp, stripWhitespace)
lines.corp2 <- tm_map(lines.corp2, removeNumbers)
lines.corp2 <- tm_map(lines.corp2, removePunctuation)
lines.corp2 <- tm_map(lines.corp2, removeWords, stopwords('english'))

0 个答案:

没有答案