knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

hcictools

The goal of hcictools is to ...

Installation

You can install the released version of hcictools from CRAN with:

install.packages("hcictools")

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("HCIC/r-tools")
knitr::opts_chunk$set(echo = TRUE)
library(tidyverse)
library(corrplot)
library(hcictools)

Package Contents

This is a package that contains helpful functions for survey data analysis. It is maintained by the Human-Computer Interaction Center at RWTH Aachen University.

Installing the package

You can install this packages by running the following code.

  install.packages("remotes")
  remotes::install_github("HCIC/r-tools")

Plotting Features

Correlation Plots

a <- c(1,2,3,8,4,5,6,7)
b <- c(4,5,6,7,3,8,9,10)
d <- c(4,2,5,2,5,2,1,5)
df <- data.frame(a = a, b = b, d = d)

cor.matrix.plot(df)

Confidence Interval Plots

It has a confidence interval plotting feature for indepedent sample tests.

plot_IS_meansCI(a, b)

RWTH Palette

Drawing palettes and RWTH Corporate CI Colors

draw.palette(unlist( rwth.colorpalette() ))

TBC More to follow



HCIC/r-tools documentation built on Dec. 26, 2020, 3:54 p.m.