knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
The goal of hcictools is to ...
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)
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.
You can install this packages by running the following code.
install.packages("remotes") remotes::install_github("HCIC/r-tools")
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)
It has a confidence interval plotting feature for indepedent sample tests.
plot_IS_meansCI(a, b)
Drawing palettes and RWTH Corporate CI Colors
draw.palette(unlist( rwth.colorpalette() ))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.