Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Qualtrics allows users to collect online data through surveys. My R package qualtRics contains convenience functions to pull survey results straight into R using the Qualtrics API instead of having to download survey results manually.
Currently, the package contains three functions:
- getSurveys() fetches a list of all surveys that you own or have access to from Qualtrics.
- getSurvey() downloads a survey from Qualtrics and loads it into R.
- readSurvey() allows you to read CSV files you download manually from Qualtrics.
Getting started with the package is straightforward. 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. Refer to the Qualtrics documentation to find your API token.
Examples
Register your Qualtrics API key. You need to do this once every R session:
Get a data frame of all surveys to which you have access:
Export a survey and load it into R:
You can add a from/to date to only retrieve responses between those dates:
You may also reference a response ID. getSurvey
will then download all responses that were submitted after that response:
You can store the results in a specific location if you like:
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:
You can read a survey that you downloaded manually using readSurvey
:
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.
If you have any questions or feature requests, please leave them here.
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.