Functions used by mmcplot.
Functions used by mmcplot.
mmcisomeans(mmc, col=c("black","red"), lwd=c(1,1), lty=c(2,1), type = "mca", xlim = NULL, ylim = NULL, ..., axis.right=2.2, ylab=paste( mmc$none$ylabel, "means", " | ", mmc$none$focus, "level"), ylab.right=NULL, xlab="contrast value", contrast.label=TRUE, means.height=TRUE) mmcmatch(mmc, col=c("black","red"), lwd=c(1,1), lty=c(2,1), type = "mca", xlim = NULL, ylim = NULL, ..., axis.right=2.2, ylab=NULL, ylab.right=NULL, xlab="contrast value", contrast.label=TRUE, xlim.match=(type != "none")) mmcboth(mmc, col=c("black","red"), lwd=c(1,1), lty=c(2,1), type = "mca", h = c(0.7, 0.3), xlim = NULL, ylim = NULL, ..., ylab.right=NULL, MMCname="MMC", Tiebreakername="Tiebreaker")
mmc |
|
type |
One of |
h |
|
xlim, ylim, xlab, ylab, ylab.right |
Standard
|
col, lwd, lty |
Standard
|
... |
Other arguments, to be forwarded to methods. |
axis.right |
Value used internally for |
contrast.label |
Logical. The default |
MMCname, Tiebreakername |
Panel names when |
xlim.match |
Logical. If |
means.height |
Logical, with default value |
A "trellis"
object.
Richard M. Heiberger <rmh@temple.edu>
See mmc
for the references.
## Not run: ## these examples exercise all optional arguments data(catalystm) catalystm1.aov <- aov(concent ~ catalyst, data=catalystm) catalystm.glht <- glht(catalystm1.aov, linfct = mcp(catalyst = "Tukey")) confint(catalystm.glht) plot(catalystm.glht) ## this is the multcomp:::plot.glht mmcplot(catalystm.glht) ## mmcplot.glht sends its argument to HH:::as.multicomp.glht with ## the default arguments (estimate.sign = 1, order.contrasts = TRUE) unless overridden: ## mmcplot(catalystm.glht, order.contrasts=FALSE, estimate.sign=0, main="B'") catalystm.lmat <- cbind("AB-D" =c(1, 1, 0,-2), "A-B" =c(1,-1, 0, 0), "ABD-C"=c(1, 1,-3, 1)) dimnames(catalystm.lmat)[[1]] <- levels(catalystm$catalyst) catalystm.mmc <- mmc(catalystm1.aov, linfct = mcp(catalyst = "Tukey"), focus.lmat=catalystm.lmat) mmcplot(catalystm.mmc, type="mca", style="confint") mmcplot(catalystm.mmc, type="lmat", style="confint") mmcplot(catalystm.mmc, type="none", style="confint") mmcplot(catalystm.mmc, type="none", style="confint", xlim.match=FALSE, main="xlim.match=FALSE is default for none confint") mmcplot(catalystm.mmc, type="none", style="confint", xlim.match=TRUE, main="out of bounds") mmcplot(catalystm.mmc$mca, style="confint") mmcplot(catalystm.mmc$lmat, style="confint") mmcplot(catalystm.mmc$none, style="confint") plot(catalystm.mmc) ## HH:::plot.mmc.multicomp method mmcplot(catalystm.mmc) mmcplot(catalystm.mmc) mmcplot(catalystm.mmc, style="isomeans") mmcplot(catalystm.mmc, style="confint") mmcplot(catalystm.mmc, style="both") mmcplot(catalystm.mmc, style="isomeans", type="mca") mmcplot(catalystm.mmc, style="isomeans", type="lmat") mmcplot(catalystm.mmc, style="isomeans", type="linfct") mmcplot(catalystm.mmc, style="isomeans", type="none") mmcplot(catalystm.mmc, style="isomeans", type="none", xlim.match=FALSE) mmcplot(catalystm.mmc, style="confint", type="mca") mmcplot(catalystm.mmc, style="confint", type="lmat") mmcplot(catalystm.mmc, style="confint", type="linfct") mmcplot(catalystm.mmc, style="confint", type="none") mmcplot(catalystm.mmc, style="confint", type="none", xlim.match=FALSE) mmcplot(catalystm.mmc, style="both", type="mca") mmcplot(catalystm.mmc, style="both", type="lmat") mmcplot(catalystm.mmc, style="both", type="linfct") mmcplot(catalystm.mmc, style="both", type="none") mmcplot(catalystm.mmc, style="both", type="none", xlim.match=FALSE) mmcplot(catalystm.mmc$mca) mmcplot(catalystm.mmc$mca$glht) mmcplot(catalystm.mmc$none) mmcplot(catalystm.mmc$none$glht) mmcplot(catalystm.mmc$lmat) mmcplot(catalystm.mmc$lmat$glht) mmcplot(catalystm.mmc, type="none") mmcplot(catalystm.mmc, type="none", xlim.match=FALSE) mmcplot(catalystm.mmc$none) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.