Click or drag to resize
FrameExtensionsWindowR, C, a Method (FrameR, C, Int32, FuncFrameR, C, a)

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Series<R, a> Window<R, C, a>(
	this Frame<R, C> frame,
	int size,
	Func<Frame<R, C>, a> aggregate
)

Parameters

frame
Type: DeedleFrameR, C

[Missing <param name="frame"/> documentation for "M:Deedle.FrameExtensions.Window``3(Deedle.Frame{``0,``1},System.Int32,System.Func{Deedle.Frame{``0,``1},``2})"]

size
Type: SystemInt32

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

aggregate
Type: SystemFuncFrameR, C, a

[Missing <param name="aggregate"/> documentation for "M:Deedle.FrameExtensions.Window``3(Deedle.Frame{``0,``1},System.Int32,System.Func{Deedle.Frame{``0,``1},``2})"]

Type Parameters

R
C
a

Return Value

Type: SeriesR, a

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

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type FrameR, C. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also