The goal of oneway is to run one way analysis of variance tests on data sets!
You can install the released version of oneway from github:
if(!require("remotes"")){
install.packages("remotes")
library(remotes)
}
remotes::install_github("marginal-latte/oneway")
This is a basic example which shows you how to solve a common problem:
library(oneway)
aov1 <- oneway(mpg ~ cyl, mtcars)
print(aov1)
plot(aov1)
summary(aov1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.