The goal of qacr is to provide convenient statistical results for data science students and practitioners.
You can install this package with the following code:
if(!require(devtools)){
install.packages("devtools")
}
devtools::install_github("rkabacoff/qacr")
This is a basic example which shows you how to solve a common problem- tabulating the levels of categorical variable.
library(qacr)
tab(mtcars, cyl)