R is a wonderful language and platform for data science. Unfortunately, many simple tasks in data preparation, data exploration, and data visualization can be more difficult than necessary.

The goal of the qacBase package is to provide convenient statistical functions for the common data science task we perform every day.

Installation

You can install this package with the following code:

install.packages("qacBase")

To install the latest development version, use:

if(!require(remotes)){
   install.packages("remotes")
}
remotes::install_github("rkabacoff/qacBase")

Using the package

The easiest way to get started is, appropriately enough, by reading the Getting Started guide. Next, take a look at the Documentation. There are also vignettes on specific topics.

Suggestions are always welcome!