Defines the methods and properties shared by all aggregators
that return a specific type.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public interface IAggregator<T> : IAggregator
Public Interface IAggregator(Of T)
Inherits IAggregator
generic<typename T>
public interface class IAggregator : IAggregator
type IAggregator<'T> =
interface
interface IAggregator
end
Type Parameters
- T
- The type of the result of the aggregation.
The IAggregatorT type exposes the following members.
Top
| Name | Description |
---|
 | 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.
(Inherited from IAggregator.) |
 | AggregateInto(IVector, IGrouping, VectorT) |
Aggregates the elements of a data frame column according to the specified
grouping and returns the result in an existing vector.
|
 | TryAggregate(IVector, T) |
Aggregates the elements of a vector and returns the result.
|
 | TryAggregate(IVector, Array1DInt32, 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.
|
Top
Reference