https://github.com/mkearney/qualtricks
📝🤡🛠 Tools for Working with Qualtrics Data
https://github.com/mkearney/qualtricks
data data-import qualtrics r r-package reading-data rstats wrangling
Last synced: 3 months ago
JSON representation
📝🤡🛠 Tools for Working with Qualtrics Data
- Host: GitHub
- URL: https://github.com/mkearney/qualtricks
- Owner: mkearney
- License: gpl-3.0
- Created: 2018-10-10T14:40:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-03T15:37:14.000Z (over 6 years ago)
- Last Synced: 2025-01-15T09:44:13.521Z (5 months ago)
- Topics: data, data-import, qualtrics, r, r-package, reading-data, rstats, wrangling
- Language: R
- Homepage: https://github.com/mkearney/qualtricks
- Size: 416 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE.md
Awesome Lists containing this project
README
---
output: github_document
---```{r setup, include = FALSE}
knitr::opts_chunk$set(echo = TRUE, collapse = TRUE, comment = "#>")
```
# qualtricks[](https://travis-ci.org/mkearney/qualtricks)
[](https://cran.r-project.org/package=qualtricks)
[](https://codecov.io/gh/mkearney/qualtricks?branch=master)[](https://www.tidyverse.org/lifecycle/#experimental)
Tools for Working with Qualtrics Data
## Installation
Install the development version from Github with:
``` r
## install remotes pkg if not already
if (!requireNamespace("remotes")) {
install.packages("remotes")
}## install from github
remotes::install_github("mkearney/qualtricks")
```## Use
Streamlined process for **reading** Qualtrics data.
``` r
## read in qualtrics CSV data
(d <- qualtricks::read_qualtrics("path/to/qualtrics.csv"))
```Streamlined process for **recoding** Likert items
``` r
## recode likerts (from labels to integers)
qualtricks::recode_likert(d)
```