/pepa

Package for the Execution of Pre Cooked Analysis

Primary LanguageROtherNOASSERTION

AppVeyor Build Status Travis-CI Build Status Coverage Status

pepa

Package for the Execution of Pre Cooked Analysis.

Installation

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.

Usage

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)