A new article created using the Distill format.
Distill is a publication format for scientific and technical writing, native to the web.
Learn more about using Distill for R Markdown at https://rstudio.github.io/distill.
To start with, ggstatsplot and tidyverse packages will be launched using library().
packages = c('ggstatsplot','tidyverse')
for(p in packages){
if(!require(p, character.only =T)){
install.packages(p)
}
library(p, character.only =T)
}
exam <- read_csv("data/Exam_data.csv")
set.seed(12345)
ggbetweenstats(
data = exam,
x = RACE,
y = ENGLISH,
type = "np"
)