-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
52 lines (36 loc) · 1.5 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(echo = TRUE, collapse = TRUE, comment = "#>")
```
# qualtricks <img src="man/figures/logo.png" width="160px" align="right" />
[![Build status](https://travis-ci.org/mkearney/qualtricks.svg?branch=master)](https://travis-ci.org/mkearney/qualtricks)
[![CRAN status](https://www.r-pkg.org/badges/version/qualtricks)](https://cran.r-project.org/package=qualtricks)
[![Coverage Status](https://codecov.io/gh/mkearney/qualtricks/branch/master/graph/badge.svg)](https://codecov.io/gh/mkearney/qualtricks?branch=master)
<!--#![Downloads](https://cranlogs.r-pkg.org/badges/qualtricks)
#![Downloads](https://cranlogs.r-pkg.org/badges/grand-total/qualtricks)-->
[![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](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)
```