uniStats | R Documentation |
Univariate Test Statistics for a Multivariate Linear Model
uniStats(x, ...)
x |
A |
... |
Other arguments, ignored |
An object of class c("anova", "data.frame")
containing, for each response variable
the overall R^2
for all terms in the model and the overall F
statistic
together with its degrees of freedom and p-value.
[glance.mlm()]
iris.mod <- lm(cbind(Sepal.Length, Sepal.Width, Petal.Length, Petal.Width) ~ Species, data=iris)
car::Anova(iris.mod)
uniStats(iris.mod)
data(Plastic, package = "heplots")
plastic.mod <- lm(cbind(tear, gloss, opacity) ~ rate*additive, data=Plastic)
# multivariate tests
car::Anova(plastic.mod)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.