Aggregators.Skip Method

Gets an aggregator that returns the first non-missing value after skipping the specified number of values.

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static TypePreservingAggregatorGroup Skip(
	int count
)

Parameters

count  Int32
The number of non-missing values to skip.

Return Value

TypePreservingAggregatorGroup

Remarks

This aggregator returns a value of the same type as the input values.

Exceptions

ArgumentOutOfRangeException

count is less than zero.

See Also