Class QuantileAggregator

  • All Implemented Interfaces:
    IntervalAggregator, java.io.Serializable

    public class QuantileAggregator
    extends java.lang.Object
    implements IntervalAggregator
    A IntervalAggregator that works based on quantiles. That is, if a quantile with value 0.15 is chosen, the aggregator would choose the 0.85 quantile of the predictions as the maximum and the 0.15 quantile as the minimum.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      QuantileAggregator​(double quantile)  
    • Method Summary

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

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • QuantileAggregator

        public QuantileAggregator​(double quantile)
    • Method Detail

      • aggregate

        public org.apache.commons.math3.geometry.euclidean.oned.Interval aggregate​(java.util.List<java.lang.Double> toAggregate)
        Specified by:
        aggregate in interface IntervalAggregator