users_data: Get tweets from users, or users from tweets
Description
Twitter API endpoints that return tweets also return data about the users who
tweeted, and most endpoints that return users also return their last tweet.
Showing these additional columns would clutter the default display, so
rtweet instead stores in special attributes and allows you to retrieve them
with the user_data() and tweets_data() helpers.
Usage
users_data(tweets)
tweets_data(users)
Value
user_data() returns a data frame of users; tweets_data()
if (auth_has_default()) {
# find users from tweetstweets <- search_tweets("r")
users_data(tweets)
# from tweets from usersusers <- search_users("r")
tweets_data(users)
}