Click or drag to resize
AggregationK Class
Represents a strategy for aggregating data in an ordered series into data segments. To create a value of this type from C#, use the non-generic `Aggregation` type. Data can be aggregate using floating windows or chunks of a specified size or by specifying a condition on two keys (i.e. end a window/chunk when the condition no longer holds). [category:Parameters and results of various operations]
Inheritance Hierarchy
SystemObject
  DeedleAggregationK
    DeedleAggregationKChunkSize
    DeedleAggregationKChunkWhile
    DeedleAggregationKWindowSize
    DeedleAggregationKWindowWhile

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

Type Parameters

K

The AggregationK type exposes the following members.

Properties
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 methodget_IsChunkSize
Public methodget_IsChunkWhile
Public methodget_IsWindowSize
Public methodget_IsWindowWhile
Public methodget_Tag
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodStatic memberNewChunkSize
Public methodStatic memberNewChunkWhile
Public methodStatic memberNewWindowSize
Public methodStatic memberNewWindowWhile
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also