No surprises: More people tweet more. Visualizing twitter counts during election day.

[This article was first published on Rcrastinate, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

As if the R world needed another example of Twitter visualizations, right? Well, here we go anyway.

At the beginning of 2013, Pablo Barberá released the first version of his R package ‘streamR‘ (CRAN link). With this package, you can tap into the streaming capabilities of the Twitter API. I did so for 10 consecutive days. Luckily, one of those days was September, 22nd – the day of the ‘Bundestagswahl’ (parliamentary elections) in Germany.

I’ve decided to put the code at the end of this post. If you want to try things out, you can find the code by scrolling to the bottom. Please note, that you may not be able to replicate all of this because you do not have the Twitter stream data available. (PLEASE NOTE: I WILL ADD THE CODE AS SOON AS I TIDIED IT UP A LITTLE.)

So, let’s first visualize all tweets between September, 17th and September 27th on a map. (As always: Please click on the image to enlarge it).


We color all tweets containing “btw” (the hash tag for the elections was #btw13), “wahl” or “wähl” in yellow. “wähl” is the stem of the German verb for “elect” or “choose”.


Some of you may know a certain webcomic by Randall Munroe. In this post about geographic profile maps, he made an important point. And it also applies to this scenario. Let’s look at another map with the sizes of all German cities with a population of over 100,000 people visualized as circles (the greater the radius of the circle, the greater the population of the city – proportions of circles are the same as the proportions of population sizes).

So, unsurprisingly, more people tweet more and the more tweets there are, the more tweets are about the elections. The following picture shows only tweets about the elections and city sizes.
So, what if we try to partial out city size? To do so, I use a set of German cities (taken from the dataset world.cities) and iterate through it. For every city, I look for tweets that originated within a ‘box’ around this city. This ‘box’ is defined by 0.03 units longitude and latitude (this value can be set in the function ‘find.tweets’ finding tweets around each city). Then, I take the population size of each city and predict number of tweets by it. I then use the residuals of this model for visualization. These residuals can be interpreted as ‘number of tweets with city size partialled out’. Have a look for all tweets in the 10 days.
This is quite interesting. Berlin, the capital of Germany, and sometimes thought of as the ‘center of innovation’ in Germany does not seem to tweet more than would be expected given its population size. But what is going on with Greifswald in the north-east?!? The answer is quite simple: There is a weather station in Greifswald tweeting weather stats every 5 minutes! So, let’s exlude the weather station and do the residualization stuff again:
And now, let us do the same, but only with tweets concerning the elections.
Now, we will overlay the last to maps.
Please note, that the sizes of orange circles (residual number of tweets about elections) and red circles (residual number of all tweets) cannot be prepared with one another. I.e., the size of the orange circle within a red circle does not symbolize the number of tweets about the elections compared to all tweets. Red circles can be compared with red circles, orange circles can be compared with orange circles.

Now, in a last plot, I want to visualize the number of tweets during the day of the elections. Citizens were allowed to vote till 18:00 h (marked with a black line). The number of all tweets per hour mentioning ‘btw13’, ‘wahl’ and ‘wähl’ is visualized by yellow bars. The percentage of tweets about the elections can thus be seen by the relation between blue and yellow bars. It’s quite nice to see how tweets mentioning the critical patterns rise in numbers and percentage just before the end of elections (I looked into some of them, many of them are motivations to go voting). As soon as polling stations closed, number of tweets rose while tweets about the elections went down again.
So much for now. I will post the R code used for this post as soon as I tidied it up a little 🙂








To leave a comment for the author, please follow the link and comment on their blog: Rcrastinate.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)