Social Media Data for Population Research

Monica Alexander, University of Toronto

Welcome!

This website contains links to materials for a 2-hour ‘Social Media Workshop for Population Research’ workshop for CAnD3 Fellows run in April 2021. The workshop provides R code examples of extracting, manipulating and analyzing Twitter data. You can also find all the code and related materials in the GitHub repo.

Set-up and preliminaries

This section covers what you will need to do before the workshop. Please make sure you have read through these instructions and materials before the workshop.

Twitter account

You need a Twitter account! This is required to authenticate your requests for Twitter data. If you don’t already have an account, you can sign up here: https://twitter.com/.

Required packages and test code

We will be using a lot of different packages, so before the workshop begins it would be great if you can make sure everything is installed and working. Briefly, the packages you will need installed are:

This R script covers the main things you need: 0_setup.R.

Please try and run this before the workshop to make sure everything is working.

Revision of the tidyverse and ggplot

It is assumed you’ve seen R, the tidyverse and ggplot before. The following two R Markdown files give an overview of some key functions and plots that may be useful to revisit:

Introduction and overview

Here are some slides that introduce social media for population research and give an overview of what we will be covering:

Slides on social media for population research

Module 1: Extracting Twitter data

This module gives a brief overview of extracting information on users, topics, and locations using the rtweet package.

R Markdown file: 1_extract_tweets.

Module 2: Geocoding and mapping

This module shows you how to geocode tweets (based on exact and self-reported locations), map data, and compare tweet frequency to population data. Includes an intro to the tidygeocoder package.

R Markdown file: 2_geocoding_mapping.

Module 3: Text analysis

In this module we do some basic text analysis, including how to clean/detect strings, word frequencies, bigrams, and sentiment analysis. All analysis is done using the tidytext package.

R Markdown file: 3_text.