Aggregator Attributes Enumeration
Enumerates properties of aggregators used to optimize their application.
Definition
Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
public enum AggregatorAttributesMembers
| None | 0 | The aggregator has no special attributes. |
| Incremental | 1 | The aggregator can compute values incrementally. |
| ZerosAffectResult | 2 | Adding or removing zeros from the input sequence can lead to a different result. |
| MissingValuesAffectResult | 4 | Adding or removing missing values from the input sequence can lead to a different result. |
| OrderingAffectsResult | 8 | Changing the order of the elements in the input sequence can lead to a different result. |
| Default | 14 | Default attributes. The aggregator has no known properties that can be optimized for. |
| RequiresWorkspace | 22 | The aggregator requires a copy of the input as workspace. |
| EmptyGroupsHaveValue | 50 | The aggregator produces a result even when the input is empty. |