AggregatorGroup<TResult> Constructor

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

AggregatorGroup<TResult>(String) Constructs a new aggregator group.
AggregatorGroup<TResult>(String, TResult) Constructs a new aggregator group.

AggregatorGroup<TResult>(String)

Constructs a new aggregator group.
C#
protected AggregatorGroup(
	string? name
)

Parameters

name  String
The name of the aggregator.

Remarks

The name of the aggregator is used as the column key when multiple aggregators are applied to the same vector.

AggregatorGroup<TResult>(String, TResult)

Constructs a new aggregator group.
C#
protected AggregatorGroup(
	string? name,
	TResult emptyValue
)

Parameters

name  String
The name of the aggregator.
emptyValue  TResult
The value of the aggregator for empty inputs.

Remarks

The name of the aggregator is used as the column key when multiple aggregators are applied to the same vector.

See Also