Skip to content

Latest commit

 

History

History
32 lines (28 loc) · 2.31 KB

README.md

File metadata and controls

32 lines (28 loc) · 2.31 KB

AnovaBase

Documentation CI status Coverage
Stable Docs Dev Docs TravisCI

AnovaBase.jl is a Julia package providing a simple framework for Analysis of Variance (ANOVA) on various types of Julia statistical models. It is similar to function anova in R.

Usage

This package is not intentded to be used directly. Use the following packages for different models:

Packages for models Packages for ANOVA Models Fitted by
GLM.jl AnovaGLM.jl TableRegressionModel{<: LinearModel} GLM.lm or fit(LinearModel, _)
TableRegressionModel{<: GeneralizedLinearModel} GLM.glm or fit(GeneralizedLinearModel, _)
MixedModels.jl AnovaMixedModels.jl LinearMixedModel AnovaMixedModels.lme or fit(LinearMixedModel, _)
GeneralizedLinearMixedModel AnovaGLM.glme or fit(GeneralizedLinearMixedModel, _)
FixedEffectModels.jl AnovaFixedEffectModels.jl FixedEffectModel AnovaFixedEffectModels.lfe or FixedEffectModels.reg

TO DO

  1. Implementation of Rao and Mallow's Cp.