Skip to content

BioTurboNick/SimpleANOVA.jl

Folders and files

NameName
Last commit message
Last commit date
Jan 31, 2019
Jan 31, 2019
Jan 12, 2019
Jan 14, 2019
Jan 31, 2019
Jan 31, 2019
Jan 22, 2019
Jan 20, 2019
Jan 22, 2019

Repository files navigation

SimpleANOVA.jl

Build Status Build status codecov.io

Analysis of Variance for Julia, the old-fashioned way.

This is a basic attempt to get a simple ANOVA implementation for Julia that works with data directly - no linear models.

The goal is to allow one function to do as much for you as possible, automatically choosing the right calculations.

Handles ANOVA with up to 3 crossed factors (fixed or random) and arbitrarily many nested factors. Requires equal replication.

It uses multidimensional arrays to interpret the structure of the data. Replicates should either be indexed along the first dimension or contained in a vector, with Factor B and Factor A the next available indices.

See docstring for usage.

Note: Uses parts from InvertedIndices.jl

VERY EXPERIMENTAL - NOT READY FOR REAL USE