Introduction

Introduction

This page provides the R code for reproducing the results of the paper Seymer, A., & Weichbold, M. (2018). Social Inequalities and the Effects of Incentives on Survey Participation: A Recruitment Experiment. Austrian Journal of Political Science, 47(2), 5–20.

The data can be obtain from PUMA or AUSSDA. Please consult the PUMA website for details ( https://www.puma-plattform.at/en/puma-surveys/) or visit the Dataverse of AUSSDA ( http://dx.doi.org/10.11587/W8NEVE).

PUMA provides a standard SPSS file (e.g. PUMA.sav), which can be imported into R:

WaveOne <- read.spss(PUMA.sav, to.data.frame=TRUE)

As my work was based on an early version of the data file available at AUSSDA today, the data wasn’t cleaned yet. Probably, the current AUSSDA file will contain identical cases, but if you find a difference in number of cases, please check if the following code solves the issue. It basically eliminates 41 cases due to inconsistencies with dates during the online survey.

WaveOne_full <- WaveOne
WaveOne <- WaveOne %>%
  filter(datenotok != levels(WaveOne$datenotok)[2])

Please send me an email, if you have any questions.