IAggregator<T> Interface

Defines the methods and properties shared by all aggregators that return a specific type.

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public interface IAggregator<T> : IAggregator
Implements
IAggregator

Type Parameters

T
The type of the result of the aggregation.

Properties

EmptyGroupsHaveValue Gets whether the aggregator produces a value for empty groups.
(Inherited from IAggregator)

Methods

AggregateBy(IVector, IGrouping, IVector) Aggregates the elements of a data frame column according to the specified grouping and returns the result in an existing vector.
(Inherited from IAggregator)
AggregateBy(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.
TryAggregate Aggregates the elements of a vector and returns the result.

See Also