Tweets data frame from users returned in a users data object.
Typically, this involves the most recent tweet of each user, though
in some cases the most recent tweet may not be available.
Usage
tweets_data(users)
Arguments
users
Data frame of Twitter users generated via
lookup_users or search_users.
# NOT RUN {# search for 100 tweets containing the letter rr <- search_tweets("r")
# print tweets data (only first 10 rows are shown)r
# extract users datausers_data(r)
# }# NOT RUN {# }