Uses of Class
elki.result.outlier.OutlierResult
-
Packages that use OutlierResult Package Description elki.application.greedyensemble Greedy ensembles for outlier detection.elki.evaluation.outlier Evaluate an outlier score using a misclassification based cost model.elki.evaluation.scores.adapter Adapter classes for ranking and scoring measures.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.elki.result Result types, representation and handling.elki.result.outlier Outlier result classes.elki.utilities.scaling.outlier Scaling of outlier scores, that require a statistical analysis of the occurring values.elki.visualization.visualizers.scatterplot.outlier Visualizers for outlier scores based on 2D projections.tutorial.outlier Tutorials on implementing outlier detection methods in ELKI. -
-
Uses of OutlierResult in elki.application.greedyensemble
Methods in elki.application.greedyensemble with parameters of type OutlierResult Modifier and Type Method Description (package private) voidComputeKNNOutlierScores. writeResult(java.lang.Appendable out, DBIDs ids, OutlierResult result, ScalingFunction scaling, java.lang.String label)Write a single output line.Method parameters in elki.application.greedyensemble with type arguments of type OutlierResult Modifier and Type Method Description private voidComputeKNNOutlierScores. runForEachK(java.lang.String prefix, int mink, int maxk, java.util.function.IntFunction<OutlierResult> runner, java.util.function.BiConsumer<java.lang.String,OutlierResult> out)Iterate over the k range.private voidComputeKNNOutlierScores. runForEachK(java.lang.String prefix, int mink, int maxk, java.util.function.IntFunction<OutlierResult> runner, java.util.function.BiConsumer<java.lang.String,OutlierResult> out)Iterate over the k range. -
Uses of OutlierResult in elki.evaluation.outlier
Methods in elki.evaluation.outlier with parameters of type OutlierResult Modifier and Type Method Description protected JudgeOutlierScores.ScoreResultJudgeOutlierScores. computeScore(DBIDs ids, DBIDs outlierIds, OutlierResult or)Evaluate a single outlier score result.private OutlierSmROCCurve.SmROCResultOutlierSmROCCurve. computeSmROCResult(SetDBIDs positiveids, OutlierResult or)HistogramResultComputeOutlierHistogram. evaluateOutlierResult(Database database, OutlierResult or)Evaluate a single outlier result as histogram.private Clustering<Model>OutlierThresholdClustering. split(OutlierResult or) -
Uses of OutlierResult in elki.evaluation.scores.adapter
Constructors in elki.evaluation.scores.adapter with parameters of type OutlierResult Constructor Description OutlierScoreAdapter(DBIDs positive, OutlierResult o)Constructor. -
Uses of OutlierResult in elki.outlier
Methods in elki.outlier that return OutlierResult Modifier and Type Method Description default OutlierResultOutlierAlgorithm. autorun(Database database)OutlierResultCOP. run(Relation<V> relation)Process a single relation.OutlierResultDWOF. run(Relation<O> relation)Performs the Generalized DWOF_SCORE algorithm on the given database by calling all the other methods in the proper order.OutlierResultGaussianModel. run(Relation<? extends NumberVector> relation)Run the algorithmOutlierResultGaussianUniformMixture. run(Relation<? extends NumberVector> relation)Run the algorithmOutlierResultOPTICSOF. run(Relation<O> relation)Perform OPTICS-based outlier detection.OutlierResultSimpleCOP. run(Relation<V> relation)Run Simple COP outlier detection. -
Uses of OutlierResult in elki.outlier.anglebased
Methods in elki.outlier.anglebased that return OutlierResult Modifier and Type Method Description OutlierResultABOD. run(Relation<V> relation)Run ABOD on the data set.OutlierResultFastABOD. run(Relation<V> relation)Run Fast-ABOD on the data set.OutlierResultLBABOD. run(Relation<V> relation)Run LB-ABOD on the data set. -
Uses of OutlierResult in elki.outlier.clustering
Methods in elki.outlier.clustering that return OutlierResult Modifier and Type Method Description OutlierResultKMeansMinusMinusOutlierDetection. autorun(Database database)OutlierResultNoiseAsOutliers. autorun(Database database)OutlierResultSilhouetteOutlierDetection. autorun(Database database)Run the Silhouette score as outlier method.OutlierResultCBLOF. run(Database database, Relation<O> relation)Run CBLOF.OutlierResultDBSCANOutlierDetection. run(Database db, Relation<? extends NumberVector> relation)Runs the algorithm in the timed evaluation part.OutlierResultEMOutlier. run(Relation<V> relation)Runs the algorithm in the timed evaluation part.OutlierResultGLOSH. run(Database db, Relation<? extends NumberVector> relation)OutlierResultKMeansOutlierDetection. run(Relation<O> relation)Run the outlier detection algorithm. -
Uses of OutlierResult in elki.outlier.density
Methods in elki.outlier.density that return OutlierResult Modifier and Type Method Description OutlierResultHySortOD. run(Database db, Relation<? extends NumberVector> relation)OutlierResultIsolationForest. run(Relation<? extends NumberVector> relation)Run the isolation forest algorithm. -
Uses of OutlierResult in elki.outlier.distance
Methods in elki.outlier.distance that return OutlierResult Modifier and Type Method Description OutlierResultAbstractDBOutlier. run(Relation<O> relation)Runs the algorithm in the timed evaluation part.OutlierResultHilOut. run(Relation<O> relation)Run the HilOut algorithm.OutlierResultKNNDD. run(Relation<O> relation)Runs the algorithm in the timed evaluation part.OutlierResultKNNOutlier. run(Relation<O> relation)Runs the algorithm in the timed evaluation part.OutlierResultKNNSOS. run(Relation<O> relation)Run the algorithm.OutlierResultKNNWeightOutlier. run(Relation<O> relation)Runs the algorithm in the timed evaluation part.OutlierResultLocalIsolationCoefficient. run(Relation<O> relation)Runs the algorithm in the timed evaluation part.OutlierResultODIN. run(Relation<O> relation)Run the ODIN algorithmOutlierResultReferenceBasedOutlierDetection. run(Relation<? extends NumberVector> relation)Run the algorithm on the given relation.OutlierResultSOS. run(Relation<O> relation)Run the algorithm. -
Uses of OutlierResult in elki.outlier.distance.parallel
Methods in elki.outlier.distance.parallel that return OutlierResult Modifier and Type Method Description OutlierResultParallelKNNOutlier. run(Relation<O> relation)Run the parallel kNN outlier detector.OutlierResultParallelKNNWeightOutlier. run(Relation<O> relation)Run the parallel kNN weight outlier detector. -
Uses of OutlierResult in elki.outlier.intrinsic
Methods in elki.outlier.intrinsic that return OutlierResult Modifier and Type Method Description OutlierResultIDOS. run(Relation<O> relation)Run the algorithmOutlierResultISOS. run(Relation<O> relation)Run the algorithm.OutlierResultLID. run(Relation<O> relation)Run the algorithm -
Uses of OutlierResult in elki.outlier.lof
Fields in elki.outlier.lof declared as OutlierResult Modifier and Type Field Description private OutlierResultFlexibleLOF.LOFResult. resultThe result of the run of theFlexibleLOFalgorithm.Methods in elki.outlier.lof that return OutlierResult Modifier and Type Method Description OutlierResultFlexibleLOF.LOFResult. getResult()Get the outlier result.OutlierResultALOCI. run(Relation<V> relation)Run the algorithm.OutlierResultCOF. run(Relation<O> relation)Runs the COF algorithm on the given database.OutlierResultFlexibleLOF. run(Relation<O> relation)Performs the Generalized LOF algorithm on the given database by callingFlexibleLOF.doRunInTime(elki.database.ids.DBIDs, elki.database.query.knn.KNNSearcher<elki.database.ids.DBIDRef>, elki.database.query.knn.KNNSearcher<elki.database.ids.DBIDRef>, elki.logging.progress.StepProgress).OutlierResultINFLO. run(Relation<O> relation)Run the algorithmOutlierResultKDEOS. run(Relation<O> rel)Run the KDEOS outlier detection algorithm.OutlierResultLDF. run(Relation<O> relation)Run the naive kernel density LOF algorithm.OutlierResultLDOF. run(Relation<O> relation)Run the algorithmOutlierResultLOCI. run(Relation<O> relation)Run the algorithmOutlierResultLOF. run(Relation<O> relation)Runs the LOF algorithm on the given database.OutlierResultLoOP. run(Relation<O> relation)Performs the LoOP algorithm on the given database.OutlierResultOnlineLOF. run(Relation<O> relation)Performs the Generalized LOF_SCORE algorithm on the given database by calling#doRunInTime(Database)and adds aOnlineLOF.LOFKNNListenerto the preprocessors.OutlierResultSimpleKernelDensityLOF. run(Relation<O> relation)Run the naive kernel density LOF algorithm.OutlierResultSimplifiedLOF. run(Relation<O> relation)Run the Simple LOF algorithm.OutlierResultVarianceOfVolume. run(Relation<O> relation)Runs the VOV algorithm on the given database.Constructors in elki.outlier.lof with parameters of type OutlierResult Constructor Description LOFResult(OutlierResult result, KNNSearcher<DBIDRef> kNNRefer, KNNSearcher<DBIDRef> kNNReach, WritableDoubleDataStore lrds, WritableDoubleDataStore lofs)Encapsulates information generated during a run of theFlexibleLOFalgorithm. -
Uses of OutlierResult in elki.outlier.lof.parallel
Methods in elki.outlier.lof.parallel that return OutlierResult Modifier and Type Method Description OutlierResultParallelLOF. run(Relation<O> relation)Run the LOF algorithm in parallel.OutlierResultParallelSimplifiedLOF. run(Relation<O> relation)Run the simplified LOF algorithm. -
Uses of OutlierResult in elki.outlier.meta
Methods in elki.outlier.meta that return OutlierResult Modifier and Type Method Description OutlierResultRescaleMetaOutlierAlgorithm. autorun(Database database)OutlierResultSimpleOutlierEnsemble. autorun(Database database)private OutlierResultRescaleMetaOutlierAlgorithm. getOutlierResult(java.lang.Object result)Find an OutlierResult to work with.OutlierResultExternalDoubleOutlierScore. run(Relation<?> relation)Run the algorithm.OutlierResultFeatureBagging. run(Relation<NumberVector> relation)Run the algorithm on a data set.OutlierResultHiCS. run(Relation<? extends NumberVector> relation)Perform HiCS on a given database. -
Uses of OutlierResult in elki.outlier.spatial
Methods in elki.outlier.spatial that return OutlierResult Modifier and Type Method Description OutlierResultCTLuGLSBackwardSearchAlgorithm. run(Relation<V> relationx, Relation<? extends NumberVector> relationy)Run the algorithmOutlierResultCTLuMeanMultipleAttributes. run(Database database, Relation<N> spatial, Relation<O> attributes)Run the algorithmOutlierResultCTLuMedianAlgorithm. run(Database database, Relation<N> nrel, Relation<? extends NumberVector> relation)Main method.OutlierResultCTLuMedianMultipleAttributes. run(Database database, Relation<N> spatial, Relation<O> attributes)Run the algorithmOutlierResultCTLuMoranScatterplotOutlier. run(Database database, Relation<N> nrel, Relation<? extends NumberVector> relation)Main method.OutlierResultCTLuRandomWalkEC. run(Relation<O> spatial, Relation<? extends NumberVector> relation)Run the algorithm.OutlierResultCTLuScatterplotOutlier. run(Database database, Relation<N> nrel, Relation<? extends NumberVector> relation)Main method.OutlierResultCTLuZTestOutlier. run(Database database, Relation<N> nrel, Relation<? extends NumberVector> relation)Main method.OutlierResultSLOM. run(Database database, Relation<N> spatial, Relation<O> relation)OutlierResultSOF. run(Database database, Relation<N> spatial, Relation<O> relation)The main run methodOutlierResultTrimmedMeanApproach. run(Database database, Relation<N> nrel, Relation<? extends NumberVector> relation)Run the algorithm. -
Uses of OutlierResult in elki.outlier.subspace
Methods in elki.outlier.subspace that return OutlierResult Modifier and Type Method Description OutlierResultOutRankS1. autorun(Database database)OutlierResultAggarwalYuEvolutionary. run(Relation<? extends NumberVector> relation)Performs the evolutionary algorithm on the given database.OutlierResultAggarwalYuNaive. run(Relation<? extends NumberVector> relation)Run the algorithm on the given relation.OutlierResultOUTRES. run(Relation<? extends NumberVector> relation)Main loop for OUTRESOutlierResultSOD. run(Relation<V> relation)Performs the SOD algorithm on the given database. -
Uses of OutlierResult in elki.outlier.svm
Methods in elki.outlier.svm that return OutlierResult Modifier and Type Method Description OutlierResultLibSVMOneClassOutlierDetection. run(Relation<V> relation)Run one-class SVM.OutlierResultOCSVM. run(Relation<V> relation)Run one-class SVM.OutlierResultSVDD. run(Relation<V> relation)Run one-class SVM. -
Uses of OutlierResult in elki.outlier.trivial
Methods in elki.outlier.trivial that return OutlierResult Modifier and Type Method Description OutlierResultByLabelOutlier. autorun(Database database)OutlierResultTrivialGeneratedOutlier. autorun(Database database)OutlierResultByLabelOutlier. run(Relation<?> relation)Run the algorithmOutlierResultTrivialAllOutlier. run(Relation<?> relation)Run the trivial algorithm.OutlierResultTrivialAverageCoordinateOutlier. run(Relation<? extends NumberVector> relation)Run the actual algorithm.OutlierResultTrivialGeneratedOutlier. run(Relation<Model> models, Relation<NumberVector> vecs, Relation<?> labels)Run the algorithmOutlierResultTrivialNoOutlier. run(Relation<?> relation)Run the trivial algorithm. -
Uses of OutlierResult in elki.result
Methods in elki.result with parameters of type OutlierResult Modifier and Type Method Description private voidKMLOutputHandler. writeOutlierResult(javax.xml.stream.XMLStreamWriter xmlw, OutlierResult outlierResult, Database database) -
Uses of OutlierResult in elki.result.outlier
Methods in elki.result.outlier that return types with arguments of type OutlierResult Modifier and Type Method Description static java.util.List<OutlierResult>OutlierResult. getOutlierResults(java.lang.Object r)Collect all outlier results from a Result -
Uses of OutlierResult in elki.utilities.scaling.outlier
Methods in elki.utilities.scaling.outlier with parameters of type OutlierResult Modifier and Type Method Description voidCOPOutlierScaling. prepare(OutlierResult or)voidHeDESNormalizationOutlierScaling. prepare(OutlierResult or)voidLogRankingPseudoOutlierScaling. prepare(OutlierResult or)voidMinusLogGammaScaling. prepare(OutlierResult or)voidMinusLogStandardDeviationScaling. prepare(OutlierResult or)voidMixtureModelOutlierScaling. prepare(OutlierResult or)voidMultiplicativeInverseScaling. prepare(OutlierResult or)voidOutlierGammaScaling. prepare(OutlierResult or)voidOutlierLinearScaling. prepare(OutlierResult or)voidOutlierMinusLogScaling. prepare(OutlierResult or)voidOutlierScaling. prepare(OutlierResult or)Prepare is called once for each data set, before getScaled() will be called.voidOutlierSqrtScaling. prepare(OutlierResult or)voidRankingPseudoOutlierScaling. prepare(OutlierResult or)voidSigmoidOutlierScaling. prepare(OutlierResult or)voidSqrtStandardDeviationScaling. prepare(OutlierResult or)voidStandardDeviationScaling. prepare(OutlierResult or)voidTopKOutlierScaling. prepare(OutlierResult or) -
Uses of OutlierResult in elki.visualization.visualizers.scatterplot.outlier
Fields in elki.visualization.visualizers.scatterplot.outlier declared as OutlierResult Modifier and Type Field Description protected OutlierResultBubbleVisualization.Instance. resultThe outlier result to visualize -
Uses of OutlierResult in tutorial.outlier
Methods in tutorial.outlier that return OutlierResult Modifier and Type Method Description OutlierResultDistanceStddevOutlier. run(Relation<O> relation)Run the outlier detection algorithmOutlierResultODIN. run(Relation<O> relation)Run the ODIN algorithm
-