LOF {DescTools} | R Documentation |
Local Outlier Factor
Description
A function that finds the local outlier factor (Breunig et al.,2000) of the matrix "data" using k neighbours. The local outlier factor (LOF) is a measure of outlyingness that is calculated for each observation. The user decides whether or not an observation will be considered an outlier based on this measure. The LOF takes into consideration the density of the neighborhood around the observation to determine its outlyingness.
Usage
LOF(data, k)
Arguments
data |
The data set to be explored |
k |
The kth-distance to be used to calculate the LOF's. |
Details
The LOFs are calculated over a range of values, and the max local outlier factor is determined over this range.
Value
lof |
A vector with the local outlier factor of each observation |
Note
This function was originally published in the library dprep.
Author(s)
Caroline Rodriguez
References
Breuning, M., Kriegel, H., Ng, R.T, and Sander. J. (2000). LOF: Identifying density-based local outliers. In Proceedings of the ACM SIGMOD International Conference on Management of Data
Examples
# Detecting the top 10 outliers using the LOF algorithm
(iris.lof <- LOF(iris[,-5], 10))