swh:1:snp:cba907cabb90d910ce06526e8e65110f84d1288a
Raw File
Tip revision: a53065a09c3fce65a63e137deb5bccb6162e6cff authored by Matthias Templ on 18 November 2020, 20:10:02 UTC
version 2.3.0
Tip revision: a53065a
summary.imp.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/summary.imp.R
\name{summary.imp}
\alias{summary.imp}
\title{Summary method for objects of class imp}
\usage{
\method{summary}{imp}(object, ...)
}
\arguments{
\item{object}{an object of class \sQuote{imp}}

\item{\dots}{additional arguments passed trough}
}
\value{
None (invisible NULL).
}
\description{
A short comparison of the original data and the imputed data is given.
}
\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.
}
\examples{

data(expenditures)
expenditures[1,3]
expenditures[1,3] <- NA
xi <- impKNNa(expenditures)
xi
summary(xi)
# plot(xi, which=1:2)

}
\seealso{
\code{\link{impCoda}}, \code{\link{impKNNa}}
}
\author{
Matthias Templ
}
\keyword{print}
back to top