print.outliers {odetector}R Documentation

Print outliers

Description

Prints the outliers found in a data set.

Usage

## S3 method for class 'outliers'
print(x, ...)

Arguments

x

an object of outliers class containing the outliers to be printed. See detect.outliers for details.

...

additional arguments for S3 method print.

Value

Print out of the object of outliers class.

Author(s)

Zeynel Cebeci, Cagatay Cebeci, Yalcin Tahtali

See Also

detect.outliers, pairs.outliers, plot.outliers, remove.outliers, summary.outliers, upfc

Examples

# Load the dataset x3p4c and use the first three columns 
data(x3p4c)
x <- x3p4c[,1:3]

# For 4 clusters, run Unsupervised Possibilistic Fuzzy C-Means (UPFC) algorithm 
# of the package ppclust 
res.upfc <- ppclust::upfc(x, centers=4)

# Detect the outliers 
out <- detect.outliers(res.upfc)
 
# Print the outliers
print(out)

[Package odetector version 1.0.1 Index]