public static Interval InterquartileRange(
this IReadOnlyList<double> sample
)
<ExtensionAttribute>
Public Shared Function InterquartileRange (
sample As IReadOnlyList(Of Double)
) As Interval
public:
[ExtensionAttribute]
static Interval InterquartileRange(
IReadOnlyList<double>^ sample
)
[<ExtensionAttribute>]
static member InterquartileRange :
sample : IReadOnlyList<float> -> Interval
The interquartile range is the interval between the 25th and the 75th percentile. Statistics textbooks define this range as the width of this interval, but since we have to compute the endpoints to get the width, we return the full Interval.
ArgumentNullException | sample is . |