| tweet_violin | R Documentation | 
Displays the distribution scores of either hashtag or topic Twitter data.
tweet_violin(DataFrameTidyScores, HT_Topic)
| DataFrameTidyScores | DataFrame of Twitter Data that has been tidy'd and scored. | 
| HT_Topic | If using hashtag data select: "hashtag". If using topic data select: "topic". | 
A ggplot violin plot.
## Not run: 
library(saotd)
data <- raw_tweets
tidy_data <- Tidy(DataFrame = data)
score_data <- tweet_scores(DataFrameTidy = tidy_data,
                           HT_Topic = "hashtag")
ht_violin <- tweet_violin(DataFrameTidyScores = score_data,
                          HT_Topic = "hashtag")
ht_violin
data <- raw_tweets
tidy_data <- Tidy(DataFrame = data)
score_data <- tweet_scores(DataFrameTidy = tidy_data,
                           HT_Topic = "topic")
topic_violin <- tweet_violin(DataFrameTidyScores = score_data,
                             HT_Topic = "topic") 
topic_violin                    
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.