dotnetCHARTING Send comments on this topic.
IQR(Series) Method
See Also 
dotnetCHARTING Namespace > StatisticalEngine Class > IQR Method : IQR(Series) Method


s
A statistical series.
Calculates the Inter-Quartile Range(IQR) of the currently registered data set.

Syntax

Visual Basic (Declaration)  
Public Overloads Shared Function IQR( _
   ByVal s As Series _
) As Element
Visual Basic (Usage) Copy Code
Dim s As Series
Dim value As Element
 
value = StatisticalEngine.IQR(s)
C#  
public static Element IQR( 
   Series s
)

Parameters

s
A statistical series.

Remarks

Recall that the IQR is the difference between the 1-st quartile (i.e. 25-th percentile) and the 2-nd quartile (i.e. the 75-th percentile).

See Also