users_data: Get tweets from users, or users from tweets

Description Usage Arguments Value Examples

View source: R/extractors.R

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

1
2
3
users_data(tweets)

tweets_data(users)

Arguments

tweets

A data frame of tweets.

users

A data frame of users.

Value

user_data() returns a data frame of users; tweets_data() returns a data frame of tweets.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
# find users from tweets
tweets <- search_tweets("r")
users_data(tweets)

# from tweets from users
users <- search_users("r")
tweets_data(users)

## End(Not run)

mkearney/rtweet documentation built on Sept. 29, 2021, 12:01 p.m.