https://github.com/cran/robCompositions
Raw File
Tip revision: 2a6f9284202f9862cb54daa8db49984b29d252b8 authored by Matthias Templ on 18 January 2010, 16:01:45 UTC
version 1.3.3
Tip revision: 2a6f928
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}{  }
}
\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