Click or drag to resize
SeriesModuleChunkK, T Method
Aggregates the input into a series of adacent chunks and returns the produced chunks as a nested series. The key in the new series is the last key of the chunk. This function skips incomplete chunks - you can use `Series.chunkSize` for more options. ## Parameters - `size` - The size of the chunk. - `series` - The input series to be aggregated. [category:Grouping, windowing and chunking]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Series<K, Series<K, T>> Chunk<K, T>(
	int size,
	Series<K, T> series
)

Parameters

size
Type: SystemInt32

[Missing <param name="size"/> documentation for "M:Deedle.SeriesModule.Chunk``2(System.Int32,Deedle.Series{``0,``1})"]

series
Type: DeedleSeriesK, T

[Missing <param name="series"/> documentation for "M:Deedle.SeriesModule.Chunk``2(System.Int32,Deedle.Series{``0,``1})"]

Type Parameters

K
T

Return Value

Type: SeriesK, SeriesK, T

[Missing <returns> documentation for "M:Deedle.SeriesModule.Chunk``2(System.Int32,Deedle.Series{``0,``1})"]

See Also