R/twitterFunctions.r

Defines functions textTweet

#' format tweets for text archiving
#' 
#' @param tweet
#' @export
#' @return text for archiving
textTweet <- function(tweet, sep="::"){
  paste(tweet$id, tweet$screenName, tweet$text, tweet$urls$expanded_url, sep=sep)
}
rmflight/socialmediascraping documentation built on May 27, 2019, 9:32 a.m.