README.md

oneway

The goal of oneway is to run one way analysis of variance tests on data sets!

Installation

You can install the released version of oneway from github:

if(!require("remotes"")){
  install.packages("remotes")
  library(remotes)
}

remotes::install_github("marginal-latte/oneway")

Example

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)


marginal-latte/oneway documentation built on Dec. 21, 2021, 1:52 p.m.