#### Authenticating Before we can start collecting Twitter data, we need to create an OAuth token that will allow us to authenticate our connection and access our personal data. After the new API changes, getting a new token requires submitting an application for a developer account, which may take a few days. For teaching purposes only, I will temporarily share one of my tokens with each of you, so that we can use the API without having to do the authentication. However, if in the future you want to get your own token, here's how you would do it: Follow these steps to create your token: 1. Go to https://developer.twitter.com/en/apps and sign in. 2. If you don't have a developer account, you will need to apply for one first. Fill in the application form and wait for a response. 3. Once it's approved, click on "Create New App". You will need to have a phone number associated with your account in order to be able to create a token. 4. Fill name, description, and website (it can be anything, even http://www.google.com). Make sure you leave 'Callback URL' empty. 5. Agree to user conditions. 6. From the "Keys and Access Tokens" tab, copy consumer key and consumer secret and paste below 7. Click on "Create my access token", then copy and paste your access token and access token secret below ```{r, eval=FALSE} library(ROAuth) my_oauth <- list(consumer_key = "CONSUMER_KEY", consumer_secret = "CONSUMER_SECRET", access_token="ACCESS_TOKEN", access_token_secret = "ACCESS_TOKEN_SECRET") save(my_oauth, file="~/my_oauth") ``` ```{r} load("~/my_oauth") ``` What can go wrong here? Make sure all the consumer and token keys are pasted here as is, without any additional space character. If you don't see any output in the console after running the code above, that's a good sign. Note that I saved the list as a file in my hard drive. That will save us some time later on, but you could also just re-run the code in lines 22 to 27 before conecting to the API in the future. To check that it worked, try running the line below: ```{r} library(tweetscores) getUsers(screen_names="LSEnews", oauth = my_oauth)[[1]]$screen_name ``` If this displays `LSEnews` then we're good to go! Some of the functions below will work with more than one token. If you want to save multiple tokens, see the instructions at the end of the file. #### Collecting data from Twitter's Streaming API Collecting tweets filtering by keyword: ```{r} library(streamR) filterStream(file.name="~/data/trump-streaming-tweets.json", track="trump", timeout=20, oauth=my_oauth) ``` Note the options: - `file.name` indicates the file in your disk where the tweets will be downloaded - `track` is the keyword(s) mentioned in the tweets we want to capture. - `timeout` is the number of seconds that the connection will remain open - `oauth` is the OAuth token we are using Once it has finished, we can open it in R as a data frame with the `parseTweets` function ```{r} tweets <- parseTweets("~/data/trump-streaming-tweets.json") tweets[1,] ``` If we want, we could also export it to a csv file to be opened later with Excel ```{r} write.csv(tweets, file="~/data/trump-streaming-tweets.csv", row.names=FALSE) ``` And this is how we would capture tweets mentioning multiple keywords: ```{r, eval=FALSE} filterStream(file.name="~/data/politics-tweets.json", track=c("graham", "sessions", "trump", "clinton"), tweets=20, oauth=my_oauth) ``` Note that here I choose a different option, `tweets`, which indicates how many tweets (approximately) the function should capture before we close the connection to the Twitter API. This second example shows how to collect tweets filtering by location instead. In other words, we can set a geographical box and collect only the tweets that are coming from that area. For example, imagine we want to collect tweets from the United States. The way to do it is to find two pairs of coordinates (longitude and latitude) that indicate the southwest corner AND the northeast corner. Note the reverse order: it's not (lat, long), but (long, lat). In the case of the US, it would be approx. (-125,25) and (-66,50). How to find these coordinates? I use: `http://itouchmap.com/latlong.html` ```{r} filterStream(file.name="~/data/tweets_geo.json", locations=c(-125, 25, -66, 50), timeout=30, oauth=my_oauth) ``` We can do as before and open the tweets in R ```{r} tweets <- parseTweets("~/data/tweets_geo.json") ``` And use the maps library to see where most tweets are coming from. Note that there are two types of geographic information on tweets: `lat`/`lon` (from geolocated tweets) and `place_lat` and `place_lon` (from tweets with place information). We will work with whatever is available. ```{r} library(maps) tweets$lat <- ifelse(is.na(tweets$lat), tweets$place_lat, tweets$lat) tweets$lon <- ifelse(is.na(tweets$lon), tweets$place_lon, tweets$lon) tweets <- tweets[!is.na(tweets$lat),] states <- map.where("state", tweets$lon, tweets$lat) head(sort(table(states), decreasing=TRUE)) ``` We can also prepare a map of the exact locations of the tweets. ```{r, fig.height=6, fig.width=10} library(ggplot2) ## First create a data frame with the map data map.data <- map_data("state") # And we use ggplot2 to draw the map: # 1) map base ggplot(map.data) + geom_map(aes(map_id = region), map = map.data, fill = "grey90", color = "grey50", size = 0.25) + expand_limits(x = map.data$long, y = map.data$lat) + # 2) limits for x and y axis scale_x_continuous(limits=c(-125,-66)) + scale_y_continuous(limits=c(25,50)) + # 3) adding the dot for each tweet geom_point(data = tweets, aes(x = lon, y = lat), size = 1, alpha = 1/5, color = "darkblue") + # 4) removing unnecessary graph elements theme(axis.line = element_blank(), axis.text = element_blank(), axis.ticks = element_blank(), axis.title = element_blank(), panel.background = element_blank(), panel.border = element_blank(), panel.grid.major = element_blank(), panel.grid.minor = element_blank(), plot.background = element_blank()) ``` And here's how to extract the edges of a network of retweets (at least one possible way of doing it): ```{r} tweets <- parseTweets("~/data/trump-streaming-tweets.json") # subset only RTs rts <- tweets[grep("RT @", tweets$text),] edges <- data.frame( node1 = rts$screen_name, node2 = str_extract(rts$text, '.*RT @([a-zA-Z0-9_]+):? ?.*'), stringsAsFactors=F ) library(igraph) g <- graph_from_data_frame(d=edges, directed=TRUE) ``` Finally, it's also possible to collect a random sample of tweets. That's what the "sampleStream" function does: ```{r} sampleStream(file.name="~/data/tweets_random.json", timeout=30, oauth=my_oauth) ``` Here I'm collecting 30 seconds of tweets. And once again, to open the tweets in R... ```{r} tweets <- parseTweets("~/data/tweets_random.json") ``` What is the most retweeted tweet? ```{r} tweets[which.max(tweets$retweet_count),] ``` What are the most popular hashtags at the moment? We'll use regular expressions to extract hashtags. ```{r} library(stringr) ht <- str_extract_all(tweets$text, "#(\\d|\\w)+") ht <- unlist(ht) head(sort(table(ht), decreasing = TRUE)) ``` And who are the most frequently mentioned users? ```{r} handles <- str_extract_all(tweets$text, '@[0-9_A-Za-z]+') handles_vector <- unlist(handles) head(sort(table(handles_vector), decreasing = TRUE), n=10) ``` How many tweets mention Justin Bieber? ```{r} length(grep("bieber", tweets$text, ignore.case=TRUE)) ``` These are toy examples, but for large files with tweets in JSON format, there might be faster ways to parse the data. For example, the `ndjson` package offers a robust and fast way to parse JSON data: ```{r} library(ndjson) json <- stream_in("~/data/tweets_geo.json") json ```