Aggregators.Skip Method

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

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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