Filtering for original tweets
An original tweet is an original posting by a twitter user and is not a retweet, quote, or reply.
The "-filter" can be combined with a search query to exclude retweets, quotes, and replies during tweet extraction.
In this exercise, you will extract tweets on "Superbowl" that are original posts and not retweets, quotes, or replies.
The libraries rtweet and plyr have been pre-loaded for this exercise.
Diese Übung ist Teil des Kurses
Analyzing Social Media Data in R
Anleitung zur Übung
- Extract tweets that are not retweets, quotes, or replies.
- Check for the presence of replies.
- Check for the presence of quotes.
- Check for the presence of retweets.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Extract 100 original tweets on "Superbowl"
tweets_org <- search_tweets("Superbowl ___:___ ___:___ ___:___", n = 100)
# Check for presence of replies
___(tweets_org$reply_to_screen_name)
# Check for presence of quotes
___(tweets_org$is_quote)
# Check for presence of retweets
___(tweets_org$is_retweet)