1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
\name{print.LinearModel}
\alias{print.LinearModel}
\title{Print the LinearModel results}
\description{
Print the results of the ANOVA obtained by the function LinearModel.
}
\usage{
\method{print}{LinearModel}(x, \dots)
}
\arguments{
\item{x}{an object of class LinearModel}
\item{\dots}{further arguments passed to or from other methods}
}
\details{
Gives the results of the LinearModel function. If a model selection is performed, the global F-test
for the complete model is first given, then all the results are given for the selected model
(global F-test, the F-tests for main effects and interaction, the t-tests)
}
\author{Francois Husson \email{francois.husson@institut-agro.fr}}
\seealso{ \code{\link{LinearModel}}}
\examples{
\dontrun{
data(senso)
res <- LinearModel(Score~ Product + Day , data=senso)
res
res2 <- LinearModel(Score~ Product + Day , data=senso, selection="BIC")
res2
}
}
\keyword{print}
|