Click or drag to resize
AggregationWindowSizea Method
Aggregate data into floating windows of a specified size and the provided handling of boundary elements. ## Parameters - `size` - Specifies the size of the floating window. Depending on the boundary behavior, the actual created windows may be smaller. - `boundary` - Specifies how to handle boundaries (when there is not enough data to create an entire window).

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Aggregation<a> WindowSize<a>(
	int size,
	Boundary boundary
)

Parameters

size
Type: SystemInt32

[Missing <param name="size"/> documentation for "M:Deedle.Aggregation.WindowSize``1(System.Int32,Deedle.Boundary)"]

boundary
Type: DeedleBoundary

[Missing <param name="boundary"/> documentation for "M:Deedle.Aggregation.WindowSize``1(System.Int32,Deedle.Boundary)"]

Type Parameters

a

Return Value

Type: Aggregationa

[Missing <returns> documentation for "M:Deedle.Aggregation.WindowSize``1(System.Int32,Deedle.Boundary)"]

See Also