O - the type of objects handled by this algorithm@Title(value="DBOD: Distance Based Outlier Detection") @Description(value="If the D-neighborhood of an object contains only very few objects (less than (1-p) percent of the data) this object is flagged as an outlier") @Reference(authors="E. M. Knorr, R. T. Ng", title="Algorithms for Mining Distance-Based Outliers in Large Datasets", booktitle="Proc. Int. Conf. on Very Large Databases (VLDB\'98)", url="http://www.vldb.org/conf/1998/p392.pdf", bibkey="DBLP:conf/vldb/KnorrN98") @Alias(value="de.lmu.ifi.dbs.elki.algorithm.outlier.DBOutlierDetection") public class DBOutlierDetection<O> extends AbstractDBOutlier<O>
Reference:
E.M. Knorr, R. T. Ng:
Algorithms for Mining Distance-Based Outliers in Large Datasets,
In: Proc. Int. Conf. on Very Large Databases (VLDB'98)
This paper presents several Distance Based Outlier Detection algorithms. Implemented here is a simple index based algorithm as presented in section 3.1.
| Modifier and Type | Class and Description |
|---|---|
static class |
DBOutlierDetection.Parameterizer<O>
Parameterization class.
|
| Modifier and Type | Field and Description |
|---|---|
private static Logging |
LOG
The logger for this class.
|
private double |
p
Density threshold percentage p.
|
ALGORITHM_IDDISTANCE_FUNCTION_ID| Constructor and Description |
|---|
DBOutlierDetection(DistanceFunction<? super O> distanceFunction,
double d,
double p)
Constructor with actual parameters.
|
| Modifier and Type | Method and Description |
|---|---|
protected DoubleDataStore |
computeOutlierScores(Database database,
Relation<O> relation,
double d)
computes an outlier score for each object of the database.
|
protected Logging |
getLogger()
Get the (STATIC) logger for this class.
|
getInputTypeRestriction, rungetDistanceFunctionrunclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitrunprivate static final Logging LOG
private double p
public DBOutlierDetection(DistanceFunction<? super O> distanceFunction, double d, double p)
distanceFunction - distance function parameterd - distance query radiusp - percentage parameterprotected DoubleDataStore computeOutlierScores(Database database, Relation<O> relation, double d)
AbstractDBOutliercomputeOutlierScores in class AbstractDBOutlier<O>database - Databaserelation - Relationd - distanceprotected Logging getLogger()
AbstractAlgorithmgetLogger in class AbstractAlgorithm<OutlierResult>Copyright © 2019 ELKI Development Team. License information.