## ----setup, include=FALSE-----------------------------------------------------
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
library(boxTest)

## ----example------------------------------------------------------------------
# Load package
library(boxTest)

# Compare mpg between automatic and manual cars
res <- compare_two_groups(mtcars, "mpg", "am")

# Display the boxplot
res$plot

## ----normality----------------------------------------------------------------
res$normality

## ----test-summary-------------------------------------------------------------
res$test_summary

