Applies the specified aggregator to all the columns in the data frame.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<T> Aggregate<T>(
AggregatorGroup<T> aggregator
)
Public Function Aggregate(Of T) (
aggregator As AggregatorGroup(Of T)
) As Vector(Of T)
public:
generic<typename T>
Vector<T>^ Aggregate(
AggregatorGroup<T>^ aggregator
)
member Aggregate :
aggregator : AggregatorGroup<'T> -> Vector<'T>
Parameters
- aggregator
- Type: Extreme.DataAnalysisAggregatorGroupT
The aggregator to use.
Type Parameters
- T
- The type of the result of the aggregation.
Return Value
Type:
VectorTA vector that contains the result of the aggregations indexed
by the data frame's column index.
Reference