A short description of the post.
To start with, ggstatsplot and tidyverse packages will be launched using library().
packages = c('ggstatsplot', 'tidyverse', 'PMCMRplus', 'rstantools')
for (p in packages){
if(!require(p, character.only = T)){
install.packages(p)
}
}
exam <- read_csv("data/Exam_data.csv")
set.seed(1234)
ggbetweenstats(
data = exam,
x = RACE,
y = ENGLISH,
type = "bayes"
)