pairs.outliers {odetector} | R Documentation |
Plots the scatter plots showing the outliers found in a data set.
## S3 method for class 'outliers'
pairs(x, ...)
x |
an object of |
... |
additional arguments for S3 method |
scatter plots showing the outliers by the variable pairs.
Zeynel Cebeci, Cagatay Cebeci, Yalcin Tahtali
detect.outliers
,
plot.outliers
,
print.outliers
,
remove.outliers
,
summary.outliers
# Load the dataset x3p4c and extract the first three columns to x
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)
# Plot the outliers by the variable pairs
pairs(out)