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 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/multcompView-package.R
\docType{package}
\name{multcompView-package}
\alias{multcompView-package}
\alias{multcompView}
\title{Summarize multiple paired comparisons}
\description{
Convert a logical vector or a vector of p-values or a difference or distance
matrix into a display identifying the pairs for which the differences were
not significantly different or for which the difference exceeded a
threshold.
}
\details{
\tabular{ll}{ Package: \tab multcompView\cr Type: \tab Package\cr Version:
\tab 0.1-1\cr Date: \tab 2006-08-06\cr License: \tab GPL\cr } Convert a
logical vector or a vector of p-values or a difference or distance matrix
into either a letter-based display using "multcompLetters" or a graphic
roughly like a "T" using "multcompTs" to identify factor levels or similar
groupings that are or are not significantly different. Designed for use in
conjunction with the output of functions like TukeyHSD, diststats, simint,
simtest, csimint, csimtestmultcomp, friedmanmc, kruskalmcpgirmess.
}
\examples{
dif3 <- c(FALSE, FALSE, TRUE)
names(dif3) <- c("a-b", "a-c", "b-c")
multcompTs(dif3)
multcompLetters(dif3)
library(MASS)
multcompBoxplot(Postwt~Treat, data=anorexia)
}
\references{
Piepho, Hans-Peter (2004) "An Algorithm for a Letter-Based
Representation of All-Pairwise Comparisons", Journal of Computational and
Graphical Statistics, 13(2)456-466.
John R. Donaghue (2004) "Implementing Shaffer's multiple comparison
procedure for a large number of groups", pp. 1-23 in Benjamini, Bretz and
Sarkar (eds) Recent Developments in Multiple Comparison Procedures
(Institute of Mathematical Statistics Lecture Notes-Monograph Series vol.
47)
}
\author{
Spencer Graves and Hans-Peter Piepho with help from Sundar Dorai-Raj
Maintainer: Spencer Graves <spencer.graves@prodsyse.com>
}
\keyword{aplot}
\keyword{dplot}
\keyword{htest}
\keyword{package}
|