Intro to R for Academic Researchers

University at Albany - EPSY 887 - Fall 2019

Data

Programme of International Student Assessment

Click here to go to the download page for the 2015 PISA results. Results from 2012, 2009, 2006, 2003, and 2000 are also available. Download the SPSS version of the files. You will also want to download the codebook files.

FiveThirtyEight

FiveThirtyEight makes a lot of their datasets freely available. There is also an R package that has some of those datasets preformatted for R. The following commands will install and load the package:

install.packages('fivethirtyeight')
library(fivethirtyeight)
data(package = 'fivethirtyeight') # Lists all the datasets available in the package
Last updated on December 8, 2018 / Published on November 23, 2018
Edit on GitHub