Package for the Execution of Pre Cooked Analysis.
To install this package you need package devtools
:
install.packages("devtools")
Then type:
devtools::install_github(c("reyzaguirre/st4gi", "reyzaguirre/pepa"))
because pepa
depends on st4gi
.
To load the package type:
library(pepa)
and have some fun typing something like:
y <- rnorm(30)
d <- data.frame(a = gl(10, 3), b = rep(c(1,2,3), 10), y = y)
pty(y)
pty(d)
pty(aov(y ~ a + b, data = d))
To see the documentation type:
help(package = pepa)