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 55 56 57 58 59 60 61 62 63 64 65
|
\name{summary.covfm}
\alias{summary.covClassic}
\alias{summary.covRob}
\alias{summary.covfm}
\title{
Summary Method
}
\description{
The generic summary method for objects of class "covClassic", "covRob", and "covfm".
}
\usage{
\method{summary}{covClassic}(object, ...)
\method{summary}{covRob}(object, ...)
\method{summary}{covfm}(object, ...)
}
\arguments{
\item{object}{an object of class "covClassic", "covRob", or "covfm".}
\item{\dots}{additional arguments for the summary method.}
}
\value{
an object of class "summary.covClassic", "summary.covRob", or "summary.covfm" respectively. Objects of class "summary.cov" and "summary.covRob" have the following components. Objects of class "summary.covfm" are lists whose elements are "summary.cov" and "summary.covRob" objects.
\item{call}{an image of the call that produced the object with all the arguments named.}
\item{cov}{a numeric matrix containing the estimate of the covariance/correlation matrix.}
\item{center}{a numeric vector containing the estimate of the location vector.}
\item{evals}{a numeric vector containing the eigenvalues of the covariance/correlation matrix.}
\item{dist}{a numeric vector containing the Mahalanobis distances. Only present if \code{distance = TRUE} in the \code{call}.}
\item{corr}{a logical flag. If \code{corr = TRUE} then \code{cov} contains an estimate of the correlation matrix of \code{x}.}
}
\seealso{
\code{\link{summary}},
\code{\link{covClassic}},
\code{\link{covRob}},
\code{\link[fit.models]{fit.models}}.
}
\examples{
data(woodmod.dat)
woodm.cov <- covClassic(woodmod.dat)
## IGNORE_RDIFF_BEGIN
summary(woodm.cov)
## IGNORE_RDIFF_END
woodm.covRob <- covRob(woodmod.dat)
summary(woodm.covRob)
woodm.fm <- fit.models(list(Robust = "covRob", Classical = "covClassic"),
data = woodmod.dat)
summary(woodm.fm)
}
\keyword{methods}
|