| FrameModuleWindowR, C Method |
Creates a sliding window using the specified size. The result is a series
containing data frames that represent individual windows.
This function skips incomplete chunks.
## Parameters
- `size` - The size of the sliding window.
- `frame` - The input frame to be aggregated.
[category:Grouping, windowing and chunking]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public static Series<R, Frame<R, C>> Window<R, C>(
int size,
Frame<R, C> frame
)
Parameters
- size
- Type: SystemInt32
[Missing <param name="size"/> documentation for "M:Deedle.FrameModule.Window``2(System.Int32,Deedle.Frame{``0,``1})"]
- frame
- Type: DeedleFrameR, C
[Missing <param name="frame"/> documentation for "M:Deedle.FrameModule.Window``2(System.Int32,Deedle.Frame{``0,``1})"]
Type Parameters
- R
- C
Return Value
Type:
SeriesR,
FrameR,
C[Missing <returns> documentation for "M:Deedle.FrameModule.Window``2(System.Int32,Deedle.Frame{``0,``1})"]
See Also