View source: R/locOuts_methods.R
summary.locOuts | R Documentation |
Prints a summary of the locOuts object obtained by the function local_outliers_ssMRCD
.
## S3 method for class 'locOuts'
summary(object, ...)
object |
a locOuts object. |
... |
further parameters passed on. |
Prints a summary of the locOuts
object.
plot.locOuts
# set seed
set.seed(1)
# make locOuts object
data = matrix(rnorm(2000), ncol = 4)
coords = matrix(rnorm(1000), ncol = 2)
groups = sample(1:10, 500, replace = TRUE)
lambda = 0.3
# local outlier detection
outs = local_outliers_ssMRCD(data = data,
coords = coords,
groups = groups,
lambda = lambda,
k = 10)
# summary method
summary(outs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.