plot.meansComp {FactoMineR} | R Documentation |
Plot the graphs for the means comparisons.
## S3 method for class 'meansComp' plot(x, ...)
x |
an object of class meansComp. |
... |
further arguments passed to or from other methods, such as ggplot, ... |
Francois Husson husson@agrocampus-ouest.fr
data(senso) res <- LinearModel(Score~ Product + Day , data=senso, selection="none") meansComp(res,spec="Product") ## Not run: ## or equivalently meansComp(res, ~Product) ## and with the sidak correction meansComp(res,~Product,adjust="sidak") ## End(Not run)