我尝试使用tm_map。它给出了以下错误。我该如何解决?

 require(tm)
 byword<-tm_map(byword, tolower)

Error in UseMethod("tm_map", x) :
  no applicable method for 'tm_map' applied to an object of class "character"

最佳答案

使用基本的R函数tolower():

tolower(c("THE quick BROWN fox"))
# [1] "the quick brown fox"

关于r - 使用tm_map(...,tolower)将文本转换为小写时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13640188/

10-12 22:38