# 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 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")

Usage

library("qualtrics")

Installation

CRAN Downloads Travis Build Status

Appveyor Build Status codecov.io

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")

Related


cloudyr project logo



cloudyr/qualtrics documentation built on May 13, 2019, 8:21 p.m.