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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/print.multcompLetters.R
\name{print.multcompLetters}
\alias{print.multcompLetters}
\title{print a multcompLetters object}
\usage{
\method{print}{multcompLetters}(x, all = FALSE, ...)
}
\arguments{
\item{x}{an object of class 'multcompLetters'}
\item{all}{FALSE to print only the character vector representations of the
'multcompLetters' comparison summary; TRUE to print also the matrix
representation.}
\item{...}{Other optional print parameters as described on the
\code{\link{print}} help page.}
}
\value{
the named, character vector representation of the
'multcompLetters' evaluation of the distance relationships
}
\description{
print method for an object of class 'multcompLetters'.
}
\details{
Prints only the Letters component of the 'multcompLetters' list unless
all=TRUE.
}
\examples{
dif3 <- c(FALSE, FALSE, TRUE)
names(dif3) <- c("A-B", "A-C", "B-C")
dif3L <- multcompLetters(dif3)
dif3L
print(dif3L)
print(dif3L, TRUE)
}
\seealso{
\code{\link{multcompLetters}}
}
\author{
Spencer Graves
}
\keyword{dplot}
|