Click or drag to resize
StatisticsPercentile Method (IEnumerableDouble, Int32)
Estimates the p-Percentile value from the provided samples. If a non-integer Percentile is needed, use Quantile instead. Approximately median-unbiased regardless of the sample distribution (R8).

Namespace: MathNet.Numerics.Statistics
Assembly: MathNet.Numerics (in MathNet.Numerics.dll) Version: 3.7
Syntax
C#
public static double Percentile(
	this IEnumerable<double> data,
	int p
)

Parameters

data
Type: System.Collections.GenericIEnumerableDouble
The data sample sequence.
p
Type: SystemInt32
Percentile selector, between 0 and 100 (inclusive).

Return Value

Type: Double

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableDouble. 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