summary.outliers | R Documentation |
Summarizes the detected outliers for a data set.
## S3 method for class 'outliers' summary(object, ...)
object |
an object of |
... |
additional arguments for S3 method |
Print out of the descriptive statistics for the outliers in an object of outliers
class.
Zeynel Cebeci, Yalcin Tahtali, Cagatay Cebeci
detect.outliers
,
pairs.outliers
,
plot.outliers
,
print.outliers
,
remove.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) # Summarize the outliers summary(out)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.