-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME.Rmd
82 lines (59 loc) · 2.47 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
output: github_document
---
```{r, knitr-options, echo = FALSE}
# rmarkdown::render("README.Rmd")
knitr::opts_chunk$set(
echo = TRUE,
collapse = TRUE,
comment = "#>",
fig.path = "README/",
cache = FALSE)
```
# qualtrics
qualtrics is an R client for the Qualtrics survey platform.
You will need an account and an [API
token](https://www.qualtrics.com/support/integrations/api-integration/api-integration)
for most functionality. Set the environment variable `QUALTRICS_TOKEN` to your
token. You can do this [during R
startup](https://www.rdocumentation.org/packages/base/versions/3.3.1/topics/Startup)
(recommended), using a configuration file and `read_config()`, or interactively
with
[`Sys.setenv()`](https://www.rdocumentation.org/packages/base/versions/3.3.1/topics/Sys.setenv):
```{r, eval = FALSE}
Sys.setenv("QUALTRICS_TOKEN" = "mykey")
```
## Usage
```{r}
library("qualtrics")
```
## Installation
[](https://cran.r-project.org/package=qualtrics)

[](https://travis-ci.org/cloudyr/qualtrics)
[](https://ci.appveyor.com/project/jamesdunham/qualtrics)
[](https://codecov.io/github/cloudyr/qualtrics?branch=master)
This package is not yet on CRAN. To install the latest development version you
can install from the cloudyr drat repository:
```{r, eval = FALSE}
# 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:
```{r, eval = FALSE}
if (!require("ghit")) {
install.packages("ghit")
}
ghit::install_github("cloudyr/qualtrics")
```
## Related
* qualtrics is written by the authors of
[qualtRics](https://github.com/JasperHG90/qualtRics),
[qualtricsR](https://github.com/saberry/qualtricsR), and
[qsurvey](https://jdunham.io/qsurvey/).
* [QualtricsTools](https://github.com/ctesta01/QualtricsTools) generates reports
from Qualtrics data via Shiny.
* Python: [PyQualtrics](https://github.com/Baguage/pyqualtrics);
[SurveyHelper](https://github.com/cwade/surveyhelper).
---
[](https://github.com/cloudyr)