R/RemoveOddChars.R

Defines functions RemoveOddChars

RemoveOddChars <-
function(df) {
  # Remove odd characters in tweets
  df$text <- sapply(df$text, function(x) TrimOddChar(x))
  return(df)
}

Try the SocialMediaLab package in your browser

Any scripts or data that you put into this service are public.

SocialMediaLab documentation built on May 29, 2017, 9:41 p.m.