| mmcplot {HH} | R Documentation |
MMC (Mean-mean Multiple Comparisons) plots in lattice.
Description
MMC (Mean–mean Multiple Comparisons) plots in lattice
Usage
mmcplot(mmc, ...)
## S3 method for class 'mmc'
mmcplot(mmc, col=c("black","red"), lwd=c(1,1), lty=c(2,1), ...,
style=c("isomeans", "confint", "both"),
type=c("mca", "lmat", "linfct", "none"))
## S3 method for class 'glht'
mmcplot(mmc, col=c("black","red"), lwd=c(1,1), lty=c(2,1),
focus=mmc$focus, ...)
## S3 method for class 'mmc.multicomp'
mmcplot(mmc, col=c("black","red"), lwd=c(1,1), lty=c(2,1), ...)
## S3 method for class 'multicomp'
mmcplot(mmc, col=c("black","red"), lwd=c(1,1), lty=c(2,1), ...)
## Default S3 method:
mmcplot(mmc, ...)
Arguments
mmc |
|
col, lwd, lty |
Standard
|
focus |
Name of the factor for which the |
... |
Other arguments to be passed on to the functions called by the methods. |
style |
Style of graph: The default |
type |
|
Value
A trellis object containing the graphs.
Author(s)
Richard M. Heiberger <rmh@temple.edu>
References
See mmc for the references.
See Also
mmc for the discussion of the MMC and for many examples.
The functions mmcisomeans, mmcmatch,
mmcboth are the internal functions that do the
actual work of plotting.
Examples
data(catalystm)
catalystm1.aov <- aov(concent ~ catalyst, data=catalystm)
catalystm.mmc <-
mmc(catalystm1.aov, linfct = mcp(catalyst = "Tukey"))
mmcplot(catalystm.mmc)
mmcplot(catalystm.mmc, style="both", MMCname="catalyst")