The goal of quick.boxplot is to create boxplots from inputted datasets, as well as categorical (x) and continuous (y) variables in ggplot2.
quick_boxplot is not availabe on CRAN, but you can download with:
install.packages("quick.boxplot")
And the development version from GitHub with:
You can install this package with:
# install.packages("devtools")
devtools::install_github("mchester/assignment_b2")
This is a basic example which shows you how to solve a common problem:
library(quick.boxplot)
quick_boxplot(datateachr::cancer_sample, diagnosis, area_mean)
quick_boxplot(gapminder:: gapminder, continent, lifeExp)
This package is special because it saves you from repeating code in the visualization of the difference of means between categorical and continuous variables.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.