IAggregator<T>.AggregateInto Method

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

AggregateInto(IVector, IGrouping, IVector) Aggregates the elements of a data frame column according to the specified grouping and returns the result in an existing vector.
AggregateInto(IVector, IGrouping, Vector<T>) Aggregates the elements of a data frame column according to the specified grouping and returns the result in an existing vector.

IAggregator<T>.AggregateInto(IVector, IGrouping, Vector<T>)

Aggregates the elements of a data frame column according to the specified grouping and returns the result in an existing vector.
C#
Vector<T> AggregateInto(
	IVector values,
	IGrouping grouping,
	Vector<T> result
)

Parameters

values  IVector
A vector holding the values.
grouping  IGrouping
The object that specifies the grouping.
result  Vector<T>
The vector that is to hold the result.

Return Value

Vector<T>
The result of aggregating the elements of values according to the groups defined by grouping.

See Also