Interface IntervalAggregator

  • All Superinterfaces:
    java.io.Serializable
    All Known Implementing Classes:
    AggressiveAggregator, QuantileAggregator

    public interface IntervalAggregator
    extends java.io.Serializable
    An IntervalAggeregator can aggregate from a list of intervals, more precisely given a list of predictions in the leaf node, it can predict a range. The basic Aggregators that we introduce are based on minimal and maximal values (we call these the Aggressive Predictors) and based on quantiles.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      org.apache.commons.math3.geometry.euclidean.oned.Interval aggregate​(java.util.List<java.lang.Double> toAggregate)  
    • Method Detail

      • aggregate

        org.apache.commons.math3.geometry.euclidean.oned.Interval aggregate​(java.util.List<java.lang.Double> toAggregate)