summary.filter: Summary method for class filter

Description Usage Arguments Details Examples

View source: R/filterMethods.R

Description

This methods allows for appropriately displaying the most important information about a filtered dataset, contained in the S3 class filter.

Usage

1
2
## S3 method for class 'filter'
summary(object, ..., explicit = FALSE)

Arguments

object

Object of class filter.

...

Additional arguments affecting the summary produced.

explicit

If set to TRUE, the indexes for removed and repaired instances (as well as new labels for the latters) are displayed. It defaults to FALSE.

Details

The information offered is the following:

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# Next example is not run in order to save time
## Not run: 
# Example of filter with additional information available.
data(iris)
out <- edgeBoostFilter(Species~., data = iris)
class(out)
summary(out)
summary(out, explicit = TRUE)

## End(Not run)

melissakey/NoiseFiltersR documentation built on Feb. 1, 2020, 8:45 p.m.