manova.estimate {agce}R Documentation

Compute the mean estimates.

Description

A simple matrix multiplication to compute the mean estimate.

Usage

manova.estimate(Y, X)

Arguments

Y The matrix of obervations.
X The design matrix.

Value

The matrix of estimates.

Author(s)

Raphael Gottardo

References

Steven F. Arnold.The Theory of Linear Models and Multivariate Analysis. John Wiley & Sons.New York, 1981.

Examples

data(Bt20)
### Remove the missing values (if any)
Bt20<-remove.NA(Bt20)
###Create the design matrix
X<-design.matrix(Bt20[,1])
###Convert as numeric the measurement
Y<-as.matrix(Bt20[,3:dim(Bt20)[2]])
manova.estimate(Y, X)

[Package agce version 1.2 Index]