package de.lmu.ifi.dbs.elki.result.outlier; /* This file is part of ELKI: Environment for Developing KDD-Applications Supported by Index-Structures Copyright (C) 2015 Ludwig-Maximilians-Universität München Lehr- und Forschungseinheit für Datenbanksysteme ELKI Development Team This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ import de.lmu.ifi.dbs.elki.database.relation.DoubleRelation; import de.lmu.ifi.dbs.elki.result.BasicResult; import de.lmu.ifi.dbs.elki.result.OrderingResult; /** * Wrap a typical Outlier result, keeping direct references to the main result * parts. * * @author Erich Schubert * @since 0.3 * * @apiviz.landmark * @apiviz.composedOf OutlierScoreMeta * @apiviz.composedOf DoubleRelation oneway - - contains * @apiviz.composedOf OrderingFromRelation */ public class OutlierResult extends BasicResult { /** * Outlier score meta information */ private OutlierScoreMeta meta; /** * Outlier scores. */ private DoubleRelation scores; /** * Outlier ordering. */ private OrderingResult ordering; /** * Constructor. * * @param meta Outlier score metadata. * @param scores Scores result. */ public OutlierResult(OutlierScoreMeta meta, DoubleRelation scores) { super(scores.getLongName(), scores.getShortName()); this.meta = meta; this.scores = scores; this.ordering = new OrderingFromRelation(scores, meta instanceof InvertedOutlierScoreMeta); this.addChildResult(scores); this.addChildResult(ordering); this.addChildResult(meta); } /** * Get the outlier score meta data * * @return the outlier meta information */ public OutlierScoreMeta getOutlierMeta() { return meta; } /** * Get the outlier scores association. * * @return the scores */ public DoubleRelation getScores() { return scores; } /** * Get the outlier ordering * * @return the ordering */ public OrderingResult getOrdering() { return ordering; } }