Aggregation
A non-generic type that simplifies the construction of Aggregation<K>
values
from C#. It provides methods for constructing different kinds of aggregation
strategies for ordered series.
Static members
Static member | Description |
Aggregation.ChunkSize(size, boundary)
Signature:(size:int * boundary:Boundary) -> Aggregation<'?6530>
Type parameters: '?6530 |
Aggregate data into non-overlapping chunks of a specified size and the provided handling of boundary elements. Parameters
|
Aggregation.ChunkWhile(condition)
Signature:condition:Func<'K,'K,bool> -> Aggregation<'K>
Type parameters: 'K |
Aggregate data into non-overlapping chunks where each chunk ends as soon
as the specified function returns Parameters
|
Aggregation.WindowSize(size, boundary)
Signature:(size:int * boundary:Boundary) -> Aggregation<'?6528>
Type parameters: '?6528 |
Aggregate data into floating windows of a specified size and the provided handling of boundary elements. Parameters
|
Aggregation.WindowWhile(condition)
Signature:condition:Func<'K,'K,bool> -> Aggregation<'K>
Type parameters: 'K |
Aggregate data into floating windows where each window ends as soon
as the specified function returns Parameters
|