Tools for Working with Qualtrics Data
Install the development version from Github with:
## install remotes pkg if not already
if (!requireNamespace("remotes")) {
install.packages("remotes")
}
## install from github
remotes::install_github("mkearney/qualtricks")
Streamlined process for reading Qualtrics data.
## read in qualtrics CSV data
(d <- qualtricks::read_qualtrics("path/to/qualtrics.csv"))
Streamlined process for recoding Likert items
## recode likerts (from labels to integers)
qualtricks::recode_likert(d)