We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
interquartile returns the interquartile range, the difference between the first and third quartiles.
Example 1: Show some quartile information of a list
> (define lst '(1 2 3 4 5 6 7 8 9)) > (first-quartile lst) 3 > (median lst) 5 > (third-quartile lst) 8 > (interquartile lst) 5