Revision b075661d51a7a1ee9b00d94017b8a6be03730ba4 authored by Matthias Templ on 29 April 2009, 00:00:00 UTC, committed by Gabor Csardi on 29 April 2009, 00:00:00 UTC
1 parent 2e8aee4
Raw File
summary.imp.Rd
\name{summary.imp}
\alias{summary.imp}
\title{ Summary method for objects of class imp }
\description{
  A short comparison of the original data and the imputed data is given.
}
\usage{
\method{summary}{imp}(object, ...)
}
\arguments{
  \item{object}{ an object of class \sQuote{imp} }
  \item{\dots}{  }
}
\details{
  Note that this function will be enhanced with more sophisticated methods in 
  future versions of the package.
  It is very rudimental in its present form. 
}
\value{
None (invisible NULL).
}
\author{ Matthias Templ }
\seealso{ \code{\link{impCoda}}, \code{\link{impKNNa}} }
\examples{
data(aitchison395)
aitchison395[1,3]
aitchison395[1,3] <- NA
xi <- impKNNa(aitchison395)
xi
summary(xi)
plot(xi, which=1:2)
}
\keyword{ print }
back to top