This project contains an R package to download surveys from Qualtrics using the API.
Note that your institution must support API access and that it must be enabled for your account. Whoever manages your Qualtrics account can help you with this. Please refer to the Qualtrics documentation to find your API token.
To install this package, execute the following in R:
install.packages("qualtRics")
Or, if you want to install the latest development version, run:
install.packages("devtools")
devtools::install_github("JasperHG90/qualtRics")
All dependencies will be installed when you install qualtRics
.
Periodically check this repository for updates and execute devtools::install_github("JasperHG90/qualtRics")
to update.
Currently, the package contains three functions:
Note that you can only export surveys that you own, or to which you have been given explicit administration rights.
Load the package:
library(qualtRics)
Register your Qualtrics API key. You need to do this once every R session:
registerApiKey(API.TOKEN = "<yourapitoken>")
Get a data frame of surveys:
surveys <- getSurveys(root_url="https://leidenuniv.eu.qualtrics.com") # URL is for my own institution
Note that, while requests will work without a root url for the getSurveys
function, it is desirable that you supply it. Supplying the correct url will reduce the number of errors you’ll experience. The getSurvey
function requires you to pass this root url. Please refer to the official documentation to find out your institution-specific root url.
Export a survey and load it into R:
mysurvey <- getSurvey(surveyID = surveys$id[6],
root_url = "https://leidenuniv.eu.qualtrics.com",
verbose = TRUE)
You can add a from/to date to only retrieve responses between those dates:
surv <- getSurvey(survs$id[4],
root_url = "https://leidenuniv.eu.qualtrics.com",
startDate = "2016-09-18",
endDate = "2016-10-01",
useLabels = FALSE,
verbose = TRUE)
You may also reference a response ID. getSurvey
will then download all responses that were submitted after that response:
surv <- getSurvey(survs$id[4],
root_url = "https://leidenuniv.eu.qualtrics.com",
lastResponseId = "R_3mmovCIeMllvsER",
useLabels = FALSE,
verbose = TRUE)
You can store the results in a specific location if you like:
mysurvey <- getSurvey(surveyID = surveys$id[6],
save_dir = "/users/jasper/desktop/",
root_url = "https://leidenuniv.eu.qualtrics.com",
verbose = TRUE)
Note that surveys that are stored in this way will be saved as an RDS file rather than e.g. a CSV. Reading an RDS file is as straightforward as this:
mysurvey <- readRDS(file = "/users/jasper/desktop/mysurvey.rds")
You can read a survey from a local file using readSurvey
:
mysurvey <- readSurvey("/users/jasper/desktop/mysurvey.csv")
To avoid special characters (mainly periods) in header names, readSurvey
uses question labels as the header names. The question belonging to that label is then added using the sjmisc package. Qualtrics gives names to these labels automatically, but you can easily change them.
For specific information about the Qualtrics API, you can refer to the official documentation.
Should you encounter any bugs or issues, please report them here
If you have a request (like adding a new argument), please leave it here