NumberAvg Method
NumberAvg()
an aggregator that calculates the average of the input values. Does NOT accept null input values. Accepts float or double input values.
Declaration
public static IAggregator<double> NumberAvg()
Returns
IAggregator<Double> | The aggregator. |
NumberAvg(String)
an aggregator that calculates the average of the input values. Does NOT accept null input values nor null extracted values. Accepts float or double input values.
Declaration
public static IAggregator<double> NumberAvg(string attributePath)
Parameters
String | attributePath | attribute Path |
Returns
IAggregator<Double> | The aggregator. |