Aggregators.Quantile Method

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Quantile(Double) Gets an aggregator that computes the specified quantile.
Quantile(Double, Int32) Gets an aggregator that computes the specified quantile.

Aggregators.Quantile(Double)

Gets an aggregator that computes the specified quantile.
C#
public static TypePreservingAggregatorGroup Quantile(
	double probability
)

Parameters

probability  Double
A value between 0 and 1 that specifies the fraction of values that is smaller than the quantile.

Return Value

TypePreservingAggregatorGroup

Aggregators.Quantile(Double, Int32)

Gets an aggregator that computes the specified quantile.
C#
public static TypePreservingAggregatorGroup Quantile(
	double probability,
	int type
)

Parameters

probability  Double
A value between 0 and 1 that specifies the fraction of values that is smaller than the quantile.
type  Int32
The type of quantile to compute. The type corresponds to the argument of the same type to the quantile function in R.

Return Value

TypePreservingAggregatorGroup

See Also