Click or drag to resize
FrameModuleWindowIntoR, C, a Method
Creates a sliding window using the specified size and then applies the provided value selector `f` on each window to produce the result which is returned as a new series. This function skips incomplete chunks. ## Parameters - `size` - The size of the sliding window. - `frame` - The input frame to be aggregated. - `f` - A function that is called on each created window. [category:Grouping, windowing and chunking]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Series<R, a> WindowInto<R, C, a>(
	int size,
	FSharpFunc<Frame<R, C>, a> f,
	Frame<R, C> frame
)

Parameters

size
Type: SystemInt32

[Missing <param name="size"/> documentation for "M:Deedle.FrameModule.WindowInto``3(System.Int32,Microsoft.FSharp.Core.FSharpFunc{Deedle.Frame{``0,``1},``2},Deedle.Frame{``0,``1})"]

f
Type: Microsoft.FSharp.CoreFSharpFuncFrameR, C, a

[Missing <param name="f"/> documentation for "M:Deedle.FrameModule.WindowInto``3(System.Int32,Microsoft.FSharp.Core.FSharpFunc{Deedle.Frame{``0,``1},``2},Deedle.Frame{``0,``1})"]

frame
Type: DeedleFrameR, C

[Missing <param name="frame"/> documentation for "M:Deedle.FrameModule.WindowInto``3(System.Int32,Microsoft.FSharp.Core.FSharpFunc{Deedle.Frame{``0,``1},``2},Deedle.Frame{``0,``1})"]

Type Parameters

R
C
a

Return Value

Type: SeriesR, a

[Missing <returns> documentation for "M:Deedle.FrameModule.WindowInto``3(System.Int32,Microsoft.FSharp.Core.FSharpFunc{Deedle.Frame{``0,``1},``2},Deedle.Frame{``0,``1})"]

See Also