
O - DatabaseObject@Title(value="OPTICS-OF: Identifying Local Outliers") @Description(value="Algorithm to compute density-based local outlier factors in a database based on the neighborhood size parameter \'minpts\'") @Reference(authors="M. M. Breunig, H.-P. Kriegel, R. Ng, and J. Sander", title="OPTICS-OF: Identifying Local Outliers", booktitle="Proc. of the 3rd European Conference on Principles of Knowledge Discovery and Data Mining (PKDD), Prague, Czech Republic", url="http://springerlink.metapress.com/content/76bx6413gqb4tvta/") public class OPTICSOF<O,D extends NumberDistance<D,?>> extends AbstractDistanceBasedAlgorithm<O,D,OutlierResult> implements OutlierAlgorithm
 Reference:
 Markus M. Breunig, Hans-Peter Kriegel, Raymond T. N, Jörg Sander:
 OPTICS-OF: Identifying Local Outliers
 In Proc. of the 3rd European Conference on Principles of Knowledge Discovery
 and Data Mining (PKDD), Prague, Czech Republic
| Modifier and Type | Class and Description | 
|---|---|
static class  | 
OPTICSOF.Parameterizer<O,D extends NumberDistance<D,?>>
Parameterization class. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
private static Logging | 
LOG
The logger for this class. 
 | 
private int | 
minpts
Parameter to specify the threshold MinPts. 
 | 
DISTANCE_FUNCTION_ID| Constructor and Description | 
|---|
OPTICSOF(DistanceFunction<? super O,D> distanceFunction,
        int minpts)
Constructor with parameters. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
TypeInformation[] | 
getInputTypeRestriction()
Get the input type restriction used for negotiating the data query. 
 | 
protected Logging | 
getLogger()
Get the (STATIC) logger for this class. 
 | 
OutlierResult | 
run(Database database,
   Relation<O> relation)
Perform OPTICS-based outlier detection. 
 | 
getDistanceFunctionmakeParameterDistanceFunction, runclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitrunprivate static final Logging LOG
private int minpts
public OPTICSOF(DistanceFunction<? super O,D> distanceFunction, int minpts)
distanceFunction - distance functionminpts - minPts parameterpublic OutlierResult run(Database database, Relation<O> relation)
database - Databaserelation - Relationpublic TypeInformation[] getInputTypeRestriction()
AbstractAlgorithmgetInputTypeRestriction in interface AlgorithmgetInputTypeRestriction in class AbstractAlgorithm<OutlierResult>protected Logging getLogger()
AbstractAlgorithmgetLogger in class AbstractAlgorithm<OutlierResult>