
V - the type of NumberVector handled by this AlgorithmD - Distance type@Title(value="COP: Correlation Outlier Probability") @Reference(authors="Hans-Peter Kriegel, Peer Kr\u00f6ger, Erich Schubert, Arthur Zimek", title="Outlier Detection in Arbitrarily Oriented Subspaces", booktitle="Proc. IEEE International Conference on Data Mining (ICDM 2012)") public class COP<V extends NumberVector<?>,D extends NumberDistance<D,?>> extends AbstractDistanceBasedAlgorithm<V,D,OutlierResult> implements OutlierAlgorithm
 Hans-Peter Kriegel, Peer Kröger, Erich Schubert, Arthur Zimek
 Outlier Detection in Arbitrarily Oriented Subspaces
 in: Proc. IEEE International Conference on Data Mining (ICDM 2012)
 
| Modifier and Type | Class and Description | 
|---|---|
| static class  | COP.DistanceDistScore type. | 
| static class  | COP.Parameterizer<V extends NumberVector<?>,D extends NumberDistance<D,?>>Parameterization class. | 
| Modifier and Type | Field and Description | 
|---|---|
| static String | COP_DIMResult name for the dimensionality. | 
| static String | COP_ERRORVECResult name for the error vectors. | 
| static String | COP_SCORESResult name for the COP outlier scores. | 
| (package private) COP.DistanceDist | distType of distribution to assume for distances. | 
| (package private) double | expectExpected amount of outliers. | 
| (package private) int | kNumber of neighbors to be considered. | 
| private static Logging | LOGThe logger for this class. | 
| private PCARunner<V> | pcaHolds the PCA runner. | 
DISTANCE_FUNCTION_ID| Constructor and Description | 
|---|
| COP(DistanceFunction<? super V,D> distanceFunction,
   int k,
   PCARunner<V> pca,
   double expect,
   COP.DistanceDist dist)Constructor. | 
| 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(Relation<V> relation)Process a single relation. | 
getDistanceFunctionmakeParameterDistanceFunction, runclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitrunprivate static final Logging LOG
public static final String COP_SCORES
public static final String COP_DIM
public static final String COP_ERRORVEC
int k
private PCARunner<V extends NumberVector<?>> pca
double expect
COP.DistanceDist dist
public COP(DistanceFunction<? super V,D> distanceFunction, int k, PCARunner<V> pca, double expect, COP.DistanceDist dist)
distanceFunction - distance functionk - number of neighborspca - PCA computation methodexpect - Expected fraction of outliers (for score normalization)dist - Distance distribution model (ChiSquared, Gamma)public OutlierResult run(Relation<V> relation)
relation - Relation to processpublic TypeInformation[] getInputTypeRestriction()
AbstractAlgorithmgetInputTypeRestriction in interface AlgorithmgetInputTypeRestriction in class AbstractAlgorithm<OutlierResult>protected Logging getLogger()
AbstractAlgorithmgetLogger in class AbstractAlgorithm<OutlierResult>