glosh_scores {weird} | R Documentation |
GLOSH scores
Description
Compute Global-Local Outlier Score from Hierarchies. This is based
on hierarchical clustering where the minimum cluster size is k. The resulting
outlier score is a measure of how anomalous each observation is.
The function uses dbscan::hdbscan
to do the calculation.
Usage
glosh_scores(y, k = 10, ...)
Arguments
y |
Numerical matrix or vector of data |
k |
Minimum cluster size. Default: 5. |
... |
Additional arguments passed to |
Value
Numerical vector containing GLOSH values
Author(s)
Rob J Hyndman
See Also
dbscan::glosh
Examples
y <- c(rnorm(49), 5)
glosh_scores(y)
[Package weird version 1.0.2 Index]