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
|
\name{plot.meansComp}
\alias{plot.meansComp}
\title{Draw the means comparisons}
\description{
Plot the graphs for the means comparisons.
}
\usage{
\method{plot}{meansComp}(x, \dots)
}
\arguments{
\item{x}{an object of class meansComp.}
\item{\dots}{further arguments passed to or from other methods, such as ggplot, ...}
}
\author{Francois Husson \email{francois.husson@institut-agro.fr}}
\seealso{\code{\link{meansComp}}}
\examples{
data(senso)
res <- LinearModel(Score~ Product + Day , data=senso, selection="none")
meansComp(res,~Product)
\dontrun{
## and with the sidak correction
meansComp(res,~Product,adjust="sidak")
}}
\keyword{dplot}
|