Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/josejimenezluna/abodoutlier

Angle-based outlier detection
https://github.com/josejimenezluna/abodoutlier

Last synced: 3 months ago
JSON representation

Angle-based outlier detection

Awesome Lists containing this project

README

        

# Angle-Based Outlier Detection

Implementation of the angle-based outlier factor in R. Three methods are available, a full but slow implementation using all the data that has cubic complexity, a fully randomized one which is way more efficient and another using k-nearest neighbours. These algorithms are specially well suited for high dimensional data outlier detection.

## Install

The package is available on CRAN:

````r
install.packages("abodOutlier")
library(abodOutlier)
````

## Usage

````r
abod(faithful, method = "randomized", n_sample_size = 30)
abod(faithful, method = "knn", k = 20)
````

MIT Licensed.