Click or drag to resize
Aggregation Class
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. [category:Parameters and results of various operations]
Inheritance Hierarchy
SystemObject
  DeedleAggregation

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
[SerializableAttribute]
public class Aggregation

The Aggregation type exposes the following members.

Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodStatic memberChunkSizea
Aggregate data into non-overlapping chunks of a specified size and the provided handling of boundary elements. ## Parameters - `size` - Specifies the size of the floating window. Depending on the boundary behavior, the actual created windows may be smaller. - `boundary` - Specifies how to handle boundaries (when there is not enough data to create an entire window).
Public methodStatic memberChunkWhileK
Aggregate data into non-overlapping chunks where each chunk ends as soon as the specified function returns `false` when called with the first key and the current key as arguments. ## Parameters - `condition` - A delegate that specifies when to end the current chunk (e.g. `(k1, k2) => k2 - k1 < 10` means that the difference between keys in each chunk will be less than 10.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodStatic memberWindowSizea
Aggregate data into floating windows of a specified size and the provided handling of boundary elements. ## Parameters - `size` - Specifies the size of the floating window. Depending on the boundary behavior, the actual created windows may be smaller. - `boundary` - Specifies how to handle boundaries (when there is not enough data to create an entire window).
Public methodStatic memberWindowWhileK
Aggregate data into floating windows where each window ends as soon as the specified function returns `false` when called with the first key and the current key as arguments. ## Parameters - `condition` - A delegate that specifies when to end the current window (e.g. `(k1, k2) => k2 - k1 < 10` means that the difference between keys in each window will be less than 10.
Top
See Also