https://github.com/cran/robCompositions
Raw File
Tip revision: 2cc9b1ae6488319f4ae1d1655243b80e72fdcbe8 authored by Matthias Templ on 04 May 2011, 00:00:00 UTC
version 1.5.0
Tip revision: 2cc9b1a
print.imp.Rd
\name{print.imp}
\alias{print.imp}
\title{ Print method for objects of class imp }
\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.
}
\usage{
\method{print}{imp}(x, ...)
}
\arguments{
  \item{x}{ an object of class \sQuote{imp} }
  \item{\dots}{ additional arguments passed trough }
}
\value{
None (invisible NULL).
}
\author{ Matthias Templ }
\seealso{ \code{\link{impCoda}}, \code{\link{impKNNa}} }
\examples{
data(expenditures)
expenditures[1,3]
expenditures[1,3] <- NA
xi <- impCoda(expenditures)
xi
summary(xi)
plot(xi, which=1:2)
}
\keyword{ print }
back to top