Aggregates the elements of a data frame column according to the specified
grouping and returns the result in an existing vector.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
IVector AggregateInto(
IVector values,
IGrouping grouping,
IVector result
)
Function AggregateInto (
values As IVector,
grouping As IGrouping,
result As IVector
) As IVector
IVector^ AggregateInto(
IVector^ values,
IGrouping^ grouping,
IVector^ result
)
abstract AggregateInto :
values : IVector *
grouping : IGrouping *
result : IVector -> IVector
Parameters
- values
- Type: Extreme.MathematicsIVector
A vector holding the values. - grouping
- Type: Extreme.DataAnalysisIGrouping
The object that specifies the grouping. - result
- Type: Extreme.MathematicsIVector
The data frame column that is to hold the result.
Return Value
Type:
IVectorThe result of aggregating the elements of
values
according to the groups defined by
grouping.
Reference