summary.locOuts {ssMRCD} | R Documentation |
Summary of Local Outlier Detection
Description
Prints a summary of the locOuts object obtained by the function local_outliers_ssMRCD
.
Usage
## S3 method for class 'locOuts'
summary(object, ...)
Arguments
object |
a locOuts object. |
... |
further parameters passed on. |
Value
Prints a summary of the locOuts
object.
See Also
Examples
# set seed
set.seed(1)
# make locOuts object
data = matrix(rnorm(2000), ncol = 4)
coords = matrix(rnorm(1000), ncol = 2)
N_assignments = sample(1:10, 500, replace = TRUE)
lambda = 0.3
# local outlier detection
outs = local_outliers_ssMRCD(data = data,
coords = coords,
N_assignments = N_assignments,
lambda = lambda,
k = 10)
# summary method
summary(outs)
[Package ssMRCD version 0.1.0 Index]