Click or drag to resize
SeriesModuleWindowK, T Method
Creates a sliding window using the specified size and returns the produced windows as a nested series. The key in the new series is the last key of the window. This function skips incomplete chunks - you can use `Series.windowSize` for more options. ## Parameters - `size` - The size of the sliding window. - `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>> Window<K, T>(
	int size,
	Series<K, T> series
)

Parameters

size
Type: SystemInt32

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

series
Type: DeedleSeriesK, T

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

Type Parameters

K
T

Return Value

Type: SeriesK, SeriesK, T

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

See Also