Calculates the interquartile range of the given data, the difference
between the median of the highest half and the median of the lowest half.
Namespace:
CenterSpace.NMath.Stats
Assembly:
NMathStats (in NMathStats.dll) Version: 3.4.0.0
Syntax
| C# |
|---|
public static double InterquartileRange(
int[] data
) |
| Visual Basic (Declaration) |
|---|
Public Shared Function InterquartileRange ( _
data As Integer() _
) As Double |
| Visual C++ |
|---|
public:
static double InterquartileRange(
array<int>^ data
) |
Return Value
Interquartile range.
See Also