Uses of Interface
elki.outlier.OutlierAlgorithm
-
Packages that use OutlierAlgorithm Package Description elki.outlier Outlier detection algorithms.elki.outlier.anglebased Angle-based outlier detection algorithms.elki.outlier.clustering Clustering based outlier detection.elki.outlier.density Density-based outlier detection algorithms.elki.outlier.distance Distance-based outlier detection algorithms, such as DBOutlier and kNN.elki.outlier.distance.parallel Parallel implementations of distance-based outlier detectors.elki.outlier.intrinsic Outlier detection algorithms based on intrinsic dimensionality.elki.outlier.lof LOF family of outlier detection algorithms.elki.outlier.lof.parallel Parallelized variants of LOF.elki.outlier.meta Meta outlier detection algorithms: external scores, score rescaling.elki.outlier.spatial Spatial outlier detection algorithms.elki.outlier.subspace Subspace outlier detection methods.elki.outlier.svm Support-Vector-Machines for outlier detection.elki.outlier.trivial Trivial outlier detection algorithms: no outliers, all outliers, label outliers.tutorial.outlier Tutorials on implementing outlier detection methods in ELKI. -
-
Uses of OutlierAlgorithm in elki.outlier
Classes in elki.outlier that implement OutlierAlgorithm Modifier and Type Class Description classCOP<V extends NumberVector>Correlation outlier probability: Outlier Detection in Arbitrarily Oriented SubspacesclassDWOF<O>Algorithm to compute dynamic-window outlier factors in a database based on a specified parameter k, which specifies the number of the neighbors to be considered during the calculation of the DWOF score.classGaussianModelOutlier detection based on the probability density of the single normal distribution.classGaussianUniformMixtureOutlier detection algorithm using a mixture model approach.classOPTICSOF<O>OPTICS-OF outlier detection algorithm, an algorithm to find Local Outliers in a database based on ideas fromOPTICSTypeAlgorithmclustering.classSimpleCOP<V extends NumberVector>Algorithm to compute local correlation outlier probability. -
Uses of OutlierAlgorithm in elki.outlier.anglebased
Classes in elki.outlier.anglebased that implement OutlierAlgorithm Modifier and Type Class Description classABOD<V extends NumberVector>Angle-Based Outlier Detection / Angle-Based Outlier Factor.classFastABOD<V extends NumberVector>Fast-ABOD (approximateABOF) version of Angle-Based Outlier Detection / Angle-Based Outlier Factor.classLBABOD<V extends NumberVector>LB-ABOD (lower-bound) version of Angle-Based Outlier Detection / Angle-Based Outlier Factor. -
Uses of OutlierAlgorithm in elki.outlier.clustering
Classes in elki.outlier.clustering that implement OutlierAlgorithm Modifier and Type Class Description classCBLOF<O extends NumberVector>Cluster-based local outlier factor (CBLOF).classDBSCANOutlierDetectionOutlier detection algorithm using DBSCAN Clustering.classEMOutlier<V extends NumberVector>Outlier detection algorithm using EM Clustering.classGLOSHGlobal-Local Outlier Scores from Hierarchies.classKMeansMinusMinusOutlierDetectionk-means--: A Unified Approach to Clustering and Outlier Detection.classKMeansOutlierDetection<O extends NumberVector>Outlier detection by using k-means clustering.classNoiseAsOutliersNoise as outliers, from a clustering algorithm.classSilhouetteOutlierDetection<O>Outlier detection by using the Silhouette Coefficients. -
Uses of OutlierAlgorithm in elki.outlier.density
Classes in elki.outlier.density that implement OutlierAlgorithm Modifier and Type Class Description classHySortODHypercube-Based Outlier Detection.classIsolationForestIsolation-Based Anomaly Detection. -
Uses of OutlierAlgorithm in elki.outlier.distance
Classes in elki.outlier.distance that implement OutlierAlgorithm Modifier and Type Class Description classAbstractDBOutlier<O>Simple distance based outlier detection algorithms.classDBOutlierDetection<O>Simple distanced based outlier detection algorithm.classDBOutlierScore<O>Compute percentage of neighbors in the given neighborhood with size d.classHilOut<O extends NumberVector>Fast Outlier Detection in High Dimensional SpacesclassKNNDD<O>Nearest Neighbor Data Description.classKNNOutlier<O>Outlier Detection based on the distance of an object to its k nearest neighbor.classKNNSOS<O>kNN-based adaption of Stochastic Outlier Selection.classKNNWeightOutlier<O>Outlier Detection based on the accumulated distances of a point to its k nearest neighbors.classLocalIsolationCoefficient<O>The Local Isolation Coefficient is the sum of the kNN distance and the average distance to its k nearest neighbors.classODIN<O>Outlier detection based on the in-degree of the kNN graph.classReferenceBasedOutlierDetectionReference-Based Outlier Detection algorithm, an algorithm that computes kNN distances approximately, using reference points.classSOS<O>Stochastic Outlier Selection. -
Uses of OutlierAlgorithm in elki.outlier.distance.parallel
Classes in elki.outlier.distance.parallel that implement OutlierAlgorithm Modifier and Type Class Description classParallelKNNOutlier<O>Parallel implementation of KNN Outlier detection.classParallelKNNWeightOutlier<O>Parallel implementation of KNN Weight Outlier detection. -
Uses of OutlierAlgorithm in elki.outlier.intrinsic
Classes in elki.outlier.intrinsic that implement OutlierAlgorithm Modifier and Type Class Description classIDOS<O>Intrinsic Dimensional Outlier Detection in High-Dimensional Data.classISOS<O>Intrinsic Stochastic Outlier Selection.classLID<O>Use intrinsic dimensionality for outlier detection. -
Uses of OutlierAlgorithm in elki.outlier.lof
Classes in elki.outlier.lof that implement OutlierAlgorithm Modifier and Type Class Description classALOCI<V extends NumberVector>Fast Outlier Detection Using the "approximate Local Correlation Integral".classCOF<O>Connectivity-based Outlier Factor (COF).classFlexibleLOF<O>Flexible variant of the "Local Outlier Factor" algorithm.classINFLO<O>Influence Outliers using Symmetric Relationship (INFLO) using two-way search, is an outlier detection method based on LOF; but also using the reverse kNN.classKDEOS<O>Generalized Outlier Detection with Flexible Kernel Density Estimates.classLDF<O extends NumberVector>Outlier Detection with Kernel Density Functions.classLDOF<O>Computes the LDOF (Local Distance-Based Outlier Factor) for all objects of a Database.classLOCI<O>Fast Outlier Detection Using the "Local Correlation Integral".classLOF<O>Algorithm to compute density-based local outlier factors in a database based on a specified parameter-lof.k.classLoOP<O>LoOP: Local Outlier ProbabilitiesclassOnlineLOF<O>Incremental version of theLOFAlgorithm, supports insertions and removals.classSimpleKernelDensityLOF<O extends NumberVector>A simple variant of the LOF algorithm, which uses a simple kernel density estimation instead of the local reachability density.classSimplifiedLOF<O>A simplified version of the original LOF algorithm, which does not use the reachability distance, yielding less stable results on inliers.classVarianceOfVolume<O extends SpatialComparable>Variance of Volume for outlier detection. -
Uses of OutlierAlgorithm in elki.outlier.lof.parallel
Classes in elki.outlier.lof.parallel that implement OutlierAlgorithm Modifier and Type Class Description classParallelLOF<O>Parallel implementation of Local Outlier Factor using processors.classParallelSimplifiedLOF<O>Parallel implementation of Simplified-LOF Outlier detection using processors. -
Uses of OutlierAlgorithm in elki.outlier.meta
Classes in elki.outlier.meta that implement OutlierAlgorithm Modifier and Type Class Description classExternalDoubleOutlierScoreExternal outlier detection scores, loading outlier scores from an external file.classFeatureBaggingA simple ensemble method called "Feature bagging" for outlier detection.classHiCSAlgorithm to compute High Contrast Subspaces for Density-Based Outlier Ranking.classRescaleMetaOutlierAlgorithmScale another outlier score using the given scaling function.classSimpleOutlierEnsembleSimple outlier ensemble method.Fields in elki.outlier.meta declared as OutlierAlgorithm Modifier and Type Field Description private OutlierAlgorithmHiCS. outlierAlgorithmOutlier detection algorithm.private OutlierAlgorithmHiCS.Par. outlierAlgorithmHolds the value ofHiCS.Par.ALGO_ID.Fields in elki.outlier.meta with type parameters of type OutlierAlgorithm Modifier and Type Field Description private java.util.List<? extends OutlierAlgorithm>SimpleOutlierEnsemble. algorithmsThe algorithms to run.private java.util.List<? extends OutlierAlgorithm>SimpleOutlierEnsemble.Par. algorithmsThe algorithms to run.Constructors in elki.outlier.meta with parameters of type OutlierAlgorithm Constructor Description HiCS(int m, double alpha, OutlierAlgorithm outlierAlgorithm, GoodnessOfFitTest statTest, int cutoff, RandomFactory rnd)Constructor.Constructor parameters in elki.outlier.meta with type arguments of type OutlierAlgorithm Constructor Description SimpleOutlierEnsemble(java.util.List<? extends OutlierAlgorithm> algorithms, EnsembleVoting voting)Constructor. -
Uses of OutlierAlgorithm in elki.outlier.spatial
Classes in elki.outlier.spatial that implement OutlierAlgorithm Modifier and Type Class Description classAbstractDistanceBasedSpatialOutlier<N,O>Abstract base class for distance-based spatial outlier detection methods.classAbstractNeighborhoodOutlier<O>Abstract base class for spatial outlier detection methods using a spatial neighborhood.classCTLuGLSBackwardSearchAlgorithm<V extends NumberVector>GLS-Backward Search is a statistical approach to detecting spatial outliers.classCTLuMeanMultipleAttributes<N,O extends NumberVector>Mean Approach is used to discover spatial outliers with multiple attributes.classCTLuMedianAlgorithm<N>Median Algorithm of C.classCTLuMedianMultipleAttributes<N,O extends NumberVector>Median Approach is used to discover spatial outliers with multiple attributes.classCTLuMoranScatterplotOutlier<N>Moran scatterplot outliers, based on the standardized deviation from the local and global means.classCTLuRandomWalkEC<O>Spatial outlier detection based on random walks.classCTLuScatterplotOutlier<N>Scatterplot-outlier is a spatial outlier detection method that performs a linear regression of object attributes and their neighbors average value.classCTLuZTestOutlier<N>Detect outliers by comparing their attribute value to the mean and standard deviation of their neighborhood.classSLOM<N,O>SLOM: a new measure for local spatial outliersclassSOF<N,O>The Spatial Outlier Factor (SOF) is a spatialLOFvariation.classTrimmedMeanApproach<N>A Trimmed Mean Approach to Finding Spatial Outliers. -
Uses of OutlierAlgorithm in elki.outlier.subspace
Classes in elki.outlier.subspace that implement OutlierAlgorithm Modifier and Type Class Description classAbstractAggarwalYuOutlierAbstract base class for the sparse-grid-cell based outlier detection of Aggarwal and Yu.classAggarwalYuEvolutionaryEvolutionary variant (EAFOD) of the high-dimensional outlier detection algorithm by Aggarwal and Yu.classAggarwalYuNaiveBruteForce variant of the high-dimensional outlier detection algorithm by Aggarwal and Yu.classOutRankS1OutRank: ranking outliers in high dimensional data.classOUTRESAdaptive outlierness for subspace outlier ranking (OUTRES).classSOD<V extends NumberVector>Subspace Outlier Degree: Outlier Detection in Axis-Parallel Subspaces of High Dimensional Data. -
Uses of OutlierAlgorithm in elki.outlier.svm
Classes in elki.outlier.svm that implement OutlierAlgorithm Modifier and Type Class Description classLibSVMOneClassOutlierDetection<V extends NumberVector>Outlier-detection using one-class support vector machines.classOCSVM<V>Outlier-detection using one-class support vector machines.classSVDD<V>Support Vector Data Description for outlier detection. -
Uses of OutlierAlgorithm in elki.outlier.trivial
Classes in elki.outlier.trivial that implement OutlierAlgorithm Modifier and Type Class Description classByLabelOutlierTrivial algorithm that marks outliers by their label.classTrivialAllOutlierTrivial method that claims all objects to be outliers.classTrivialAverageCoordinateOutlierTrivial method that takes the average of all dimensions (for one-dimensional data that is just the actual value!)classTrivialGeneratedOutlierExtract outlier score from the model the objects were generated by.classTrivialNoOutlierTrivial method that claims to find no outliers. -
Uses of OutlierAlgorithm in tutorial.outlier
Classes in tutorial.outlier that implement OutlierAlgorithm Modifier and Type Class Description classDistanceStddevOutlier<O>A simple outlier detection algorithm that computes the standard deviation of the kNN distances.classODIN<O>Outlier detection based on the in-degree of the kNN graph.
-