IAggregator2<T>.AggregateInto Method

Definition

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

Overload List

AggregateInto(IVector, 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, 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.

IAggregator2<T>.AggregateInto(IVector, 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 values1,
	IVector values2,
	IGrouping grouping,
	Vector<T> result
)

Parameters

values1  IVector
A vector of values.
values2  IVector
A vector of 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 corresponding elements of values1 and values2 according to the groups defined by grouping.

See Also