| wrapped_functions {compositions} | R Documentation |
These functions of a standard R distribution (from package "base") are wrapped by naive functions in "compositions" with the goal to ensure their normal behavior.
anova(...)
... |
arguments passed to the original function (all!) |
The functions documented in this page are just wrapers around base functions from R that, due to a variety of reasons, need pre- or post-processing when "compositions" is loaded
The same as the original function from package base (i.e. search for it with '?base::anova')
Raimon Tolosana-Delgado http://www.stat.boogaart.de
anova in package "base"
# anova:
data("Hydrochem") # load data
Z = acomp(Hydrochem[,7:19]) # select composition
Hydrochem$compo = Z # attach to dataset
md = lm(alr(compo)~log(H), data=Hydrochem) # fit model
anova(md) # anova test