Search code examples
rtmlowercaseterm-document-matrix

Error converting text to lowercase with tm_map(..., tolower)


I tried using the tm_map. It gave the following error. How can I get around this?

 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"

Solution

  • Use the base R function tolower():

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