ContinuousDistribution.InterQuartileRange Property

Returns the inter-quartile range of this distribution.

Definition

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public double InterQuartileRange { get; }

Property Value

Double
The difference between the 3rd and the 1st quartile.

Remarks

The inter-quartile range of a distribution is the difference between the 75% and the 25% InverseDistributionFunction(Double) of the distribution. It is a robust estimate of the spread of the distribution, as it is unaffected by the lower and upper 25% of the data.

See Also