AggregatorGroup<T> Class

Represents an aggregator group that computes a result of the specified type.

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public class AggregatorGroup<T> : AggregatorGroup
Inheritance
Object  →  AggregatorGroup  →  AggregatorGroup<T>

Type Parameters

T
The type of the result.

Constructors

AggregatorGroup<T> Constructs a new aggregator group.

Properties

EmptyGroupsHaveValue Gets whether the aggregator produces a value for empty groups.
(Inherited from AggregatorGroup)
Name Gets the name of the aggregator group.
(Inherited from AggregatorGroup)

Methods

Aggregate<U> Aggregates the elements of a vector and returns the result.
AggregateBy<U> Aggregates the elements of a vector according to the specified grouping.
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.
AggregateInto<U>(IVector, IGrouping, IVector) Aggregates the specified values according to the specified grouping.
AggregateInto<U>(IVector, IGrouping, Vector<T>) Aggregates the specified values according to the specified grouping.
AggregateInto<U>(Vector<U>, IGrouping, Vector<T>) Groups the elements of a vector according to the specified grouping.
AggregateInto<U>(Vector<U>, Int32[], Vector<T>) Groups the elements of a vector according to the specified level indexes.
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Specialize(Type) Returns an aggregator specialized to operate on values of the specified type.
Specialize<U>() Returns an aggregator specialized to operate on values of the specified type.
ToStringReturns a string that represents the current object.
(Inherited from Object)
TryAggregate(IVector, T) Aggregates the elements of a vector and returns the result.
TryAggregate(IVector, Array1D<Int32>, Int32, T) Aggregates the specified elements of a vector and returns the result.
TryAggregate(IVector, Int32, Int32, T) Aggregates the specified range of elements of a vector and returns the result.
TryAggregate<U>(Vector<U>, T) Aggregates the elements of a vector and returns the result.
TryAggregate<U>(IEnumerable<U>, Boolean, T) Aggregates the elements of a sequence and returns the result.
TryAggregate<U>(IVector, Array1D<Int32>, Int32, T) Aggregates the specified elements of a vector and returns the result.
TryAggregate<U>(IVector, Int32, Int32, T) Aggregates the specified range of elements of a vector and returns the result.
TryAggregate<U>(Vector<U>, Array1D<Int32>, Int32, T) Aggregates the specified elements of a vector and returns the result.
TryAggregate<U>(Vector<U>, Int32, Int32, T) Aggregates the specified range of elements of a vector and returns the result.
TrySpecialize(Type, IAggregator) Returns an aggregator specialized to operate on values of the specified type.
(Overrides AggregatorGroup.TrySpecialize(Type, IAggregator))
TrySpecialize(Type, IAggregator<T>) Attempts to create an aggregator specialized to operate on values of the specified type.
TrySpecialize<U>(Aggregator<U, T>) Attempts to create an aggregator specialized to operate on values of the specified type.
TrySpecialize<U>(IAggregator<T>) Attempts to create an aggregator specialized to operate on values of the specified type.

See Also