summary.imp {robCompositions}R Documentation

Summary method for objects of class imp

Description

A short comparison of the original data and the imputed data is given.

Usage

## S3 method for class 'imp':
summary(object, ...)

Arguments

object an object of class ‘imp’
...

Details

Note that this function will be enhanced with more sophisticated methods in future versions of the package. It is very rudimental in its present form.

Value

None (invisible NULL).

Author(s)

Matthias Templ

See Also

impCoda, impKNNa

Examples

data(aitchison395)
aitchison395[1,3]
aitchison395[1,3] <- NA
xi <- impKNNa(aitchison395)
xi
summary(xi)
plot(xi, which=1:2)

[Package robCompositions version 1.2 Index]