Revision a53065a09c3fce65a63e137deb5bccb6162e6cff authored by Matthias Templ on 18 November 2020, 20:10:02 UTC, committed by cran-robot on 18 November 2020, 20:10:02 UTC
1 parent 9ae1e67
Raw File
print.imp.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/print.imp.R
\name{print.imp}
\alias{print.imp}
\title{Print method for objects of class imp}
\usage{
\method{print}{imp}(x, ...)
}
\arguments{
\item{x}{an object of class \sQuote{imp}}

\item{\dots}{additional arguments passed trough}
}
\value{
None (invisible NULL).
}
\description{
The function returns a few information about how many missing values are
imputed and possible other information about the amount of iterations, for
example.
}
\examples{

data(expenditures)
expenditures[1,3]
expenditures[1,3] <- NA
\dontrun{
xi <- impCoda(expenditures)
xi
summary(xi)
plot(xi, which=1:2)
}

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