tweet_tidy {saotd} | R Documentation |
Tidy Twitter Data
Description
Function to Tidy Twitter Data. This function will remove a significant amount of the original twitter metadata, as it is not needed to determine the sentiment of the tweets. This function will remove all emoticons, punctuation, weblinks while maintaining actual Tweet text.
Usage
tweet_tidy(DataFrame)
Arguments
DataFrame |
Data Frame of Twitter Data. |
Value
A Tidy tibble.
Examples
## Not run:
library(saotd)
data <- raw_tweets
tidy_data <- tweet_tidy(DataFrame = data)
tidy_data
## End(Not run)
[Package saotd version 0.3.1 Index]