https://github.com/cran/robCompositions
Raw File
Tip revision: 603e991f22931dee89245568fb7ae42ec7c13bf2 authored by Matthias Templ on 19 February 2019, 12:50:03 UTC
version 2.0.10
Tip revision: 603e991
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