manova.estimate {agce} | R Documentation |
A simple matrix multiplication to compute the mean estimate.
manova.estimate(Y, X)
Y |
The matrix of obervations. |
X |
The design matrix. |
The matrix of estimates.
Raphael Gottardo
Steven F. Arnold.The Theory of Linear Models and Multivariate Analysis. John Wiley & Sons.New York, 1981.
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)