Description Usage Arguments Value Examples
Creates a line chart of average number of likes and retweets received based on hour of tweet posted.
1 | engagement_by_hour(tweets_df)
|
tweets_df |
dataframe |
ggplot object
1 2 3 4 | my_tweets <- data.frame (created_at = c("2021-03-06 16:03:31", "2021-03-05 21:57:47", '2021-03-05 05:50:50'),
favorite_count = c(20, 10, 2),
retweet_count = c(20, 10, 2))
engagement_by_hour(my_tweets)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.