print.outliers {odetector} | R Documentation |
Prints the outliers found in a data set.
## S3 method for class 'outliers'
print(x, ...)
x |
an object of |
... |
additional arguments for S3 method |
Print out of the object of outliers
class.
Zeynel Cebeci, Cagatay Cebeci, Yalcin Tahtali
detect.outliers
,
pairs.outliers
,
plot.outliers
,
remove.outliers
,
summary.outliers
,
upfc
# 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)