qualtrics is an R client for the Qualtrics survey platform.
You will need an account and an API token for most functionality. Set the environment variable QUALTRICS_TOKEN
to your token. You can do this during R startup (recommended), using a configuration file and read_config()
, or interactively with Sys.setenv()
:
Sys.setenv("QUALTRICS_TOKEN" = "mykey")
library("qualtrics")
This package is not yet on CRAN. To install the latest development version you can install from the cloudyr drat repository:
# latest stable version
install.packages("qualtrics", repos = c(cloudyr = "http://cloudyr.github.io/drat", getOption("repos")))
Or, to pull a potentially unstable version directly from GitHub:
if (!require("ghit")) {
install.packages("ghit")
}
ghit::install_github("cloudyr/qualtrics")
qualtrics is written by the authors of qualtRics, qualtricsR, and qsurvey.
QualtricsTools generates reports from Qualtrics data via Shiny.
Python: PyQualtrics; SurveyHelper.