https://github.com/cran/robCompositions
Raw File
Tip revision: 775c7e1be4c58aaf8adccdd2b92d07aa9cdc265f authored by Matthias Templ on 14 January 2020, 05:10:03 UTC
version 2.2.0
Tip revision: 775c7e1
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