Class ArithmeticMeanAggregator
- java.lang.Object
-
- org.palladiosimulator.monitorrepository.statisticalcharacterization.StatisticalCharacterizationAggregator
-
- org.palladiosimulator.monitorrepository.statisticalcharacterization.ArithmeticMeanAggregator
-
public class ArithmeticMeanAggregator extends StatisticalCharacterizationAggregator
StatisticalCharacterizationAggregatorcorresponding to theArithmeticMeanmodel class which computes the arithmetic mean of a sequence of measurements (discrete case) or a function with respect to an interval (continuous case):
In the discrete case this is simplyAM=(x1 + x2 + ... + xn) / nwithnbeing the number of measurements.
In the continuous case, this aggregator approximates the integral AM=∫f(x)dx ⁄ (b-a) whereaandbare upper and lower interval bound and the integration is carried out from a to b, and the (positive) functionfis interpolated from a given (finite) set of samples (i.e., measurements).
-
-
Constructor Summary
Constructors Constructor Description ArithmeticMeanAggregator(org.palladiosimulator.metricspec.NumericalBaseMetricDescription expectedWindowMetric)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected javax.measure.Measure<Double,javax.measure.quantity.Quantity>calculateStatisticalCharacterizationContinuous(Iterable<org.palladiosimulator.measurementframework.MeasuringValue> windowData)Method to be implemented by each subclass to calculate the statistical characterization of a sequence of measurements with a continuous scope of validity (i.e., to aggregate them).
This method is invoked withinStatisticalCharacterizationAggregator.aggregateData(Iterable, Amount, Amount, Optional).protected javax.measure.Measure<Double,javax.measure.quantity.Quantity>calculateStatisticalCharaterizationDiscrete(Iterable<org.palladiosimulator.measurementframework.MeasuringValue> windowData)Method to be implemented by each subclass to calculate the statistical characterization of a sequence of measurements with a discrete scope of validity (i.e., to aggregate them).
This method is invoked withinStatisticalCharacterizationAggregator.aggregateData(Iterable, Amount, Amount, Optional).-
Methods inherited from class org.palladiosimulator.monitorrepository.statisticalcharacterization.StatisticalCharacterizationAggregator
aggregateData, getDataDefaultUnit, getDataMetric, getIntervalLength, obtainCurrentMeasurementValidityLength, obtainDataFromMeasurement, obtainDataValueFromMeasurement
-
-
-
-
Method Detail
-
calculateStatisticalCharaterizationDiscrete
protected javax.measure.Measure<Double,javax.measure.quantity.Quantity> calculateStatisticalCharaterizationDiscrete(Iterable<org.palladiosimulator.measurementframework.MeasuringValue> windowData)
Description copied from class:StatisticalCharacterizationAggregatorMethod to be implemented by each subclass to calculate the statistical characterization of a sequence of measurements with a discrete scope of validity (i.e., to aggregate them).
This method is invoked withinStatisticalCharacterizationAggregator.aggregateData(Iterable, Amount, Amount, Optional).- Specified by:
calculateStatisticalCharaterizationDiscretein classStatisticalCharacterizationAggregator- Parameters:
windowData- The sequence of data/measurements to be aggregated, expressed as anIterableofMeasuringValues.- Returns:
- A
Measurerepresenting the result of the aggregation. - See Also:
StatisticalCharacterizationAggregator.getDataMetric(),BaseMetricDescription.getScopeOfValidity()
-
calculateStatisticalCharacterizationContinuous
protected javax.measure.Measure<Double,javax.measure.quantity.Quantity> calculateStatisticalCharacterizationContinuous(Iterable<org.palladiosimulator.measurementframework.MeasuringValue> windowData)
Description copied from class:StatisticalCharacterizationAggregatorMethod to be implemented by each subclass to calculate the statistical characterization of a sequence of measurements with a continuous scope of validity (i.e., to aggregate them).
This method is invoked withinStatisticalCharacterizationAggregator.aggregateData(Iterable, Amount, Amount, Optional).- Specified by:
calculateStatisticalCharacterizationContinuousin classStatisticalCharacterizationAggregator- Parameters:
windowData- The sequence of data/measurements to be aggregated, expressed as anIterableofMeasuringValues.- Returns:
- A
Measurerepresenting the result of the aggregation. - See Also:
StatisticalCharacterizationAggregator.getDataMetric(),BaseMetricDescription.getScopeOfValidity()
-
-