SEMI INTERQUARTILE RANGE
LOWER SEMI INTERQUARTILE RANGE
UPPER SEMI INTERQUARTILE RANGE
Name:
SEMI-INTERQUARTILE RANGE (LET)
Type:
Purpose:
Compute either the lower semi-interquartile range or the upper
semi-interquartile range for a variable.
Description:
The interquartile range is:
IQ = UPPER QUARTILE - LOWER QUARTILE
That is, it is the difference betweeen the 75th and 25th
percentiles of a variable.
The lower semi-interquartile range is:
\( \mbox{SIQR}_L = q_2 - q_1 \)
and the upper semi-interquartile range is:
\( \mbox{SIQR}_U = q_3 - q_2 \)
with \( q_1\), \( q_2 \), and \( q_3 \) denoting the lower quartile,
median, and upper quartile respectively.
The semi-interquartile range is sometimes used in place of the
interquartile range when there is significant skewness in the
data. For example, it can be used to provide an alternate
definition of the fences in a
box plot.
Syntax 1:
LET <par> = LOWER SEMI INTERQUARTILE RANGE <y>
<SUBSET/EXCEPT/FOR qualification>
where <y> is the response variable;
<par> is a parameter where the computed lower
semi-interquartile range is stored;
and where the <SUBSET/EXCEPT/FOR qualification> is optional.
Syntax 2:
LET <par> = UPPER SEMI INTERQUARTILE RANGE <y>
<SUBSET/EXCEPT/FOR qualification>
where <y> is the response variable;
<par> is a parameter where the computed upper
semi-interquartile range is stored;
and where the <SUBSET/EXCEPT/FOR qualification> is optional.
Examples:
LET A = LOWER SEMI INTERQUARTILE RANGE Y1
LET A = UPPER SEMI INTERQUARTILE RANGE Y1
LET A = UPPER SEMI INTERQUARTILE RANGE Y1 SUBSER TAG > 2
LET A = INTERQUARTILE RANGE Y1 SUBSET TAG > 2
Note:
Dataplot statistics can be used in a number of commands. For
details, enter
Default:
Synonyms:
Related Commands:
Reference:
Walker, Dovedo, Chakraborti and Hilton (2019), "An Improved Boxplot
for Univariate Data", The American Statistician, Vol. 72,
No. 4, pp. 348-353.
Applications:
Implementation Date:
Program:
LET NU = 1
LET Y = CHISQUARE RANDOM NUMBERS FOR I = 1 1 100
LET SIQRL = LOWER SEMI INTERQUARTILE RANGE Y
LET SIQRU = UPPER SEMI INTERQUARTILE RANGE Y
SET WRITE DECIMALS 4
PRINT SIQRL SIQRU
The following output is generated
PARAMETERS AND CONSTANTS--
SIQRL -- 0.4803
SIQRU -- 0.8989
Privacy
Policy/Security Notice
Disclaimer |
FOIA
NIST is an agency of the U.S.
Commerce Department.
Date created: 08/29/2019
Last updated: 08/29/2019
Please email comments on this WWW page to
alan.heckert@nist.gov.
|
|