Interface IntervalAggregator
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
AggressiveAggregator,QuantileAggregator
public interface IntervalAggregator extends java.io.SerializableAn 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.Intervalaggregate(java.util.List<java.lang.Double> toAggregate)
-