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"
Use the base R function tolower()
:
tolower(c("THE quick BROWN fox"))
# [1] "the quick brown fox"