Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
iqr
四分位範囲
呼び出し手順
q=iqr(x) q=iqr(x,'r') (or, equivalently, q=iqr(x,1)) q=iqr(x,'c') (or, equivalently, q=iqr(x,2))
パラメータ
- x
実数または複素数のベクトルまたは行列
説明
この関数は,四分位範囲 IQR = ベクトルまたは行列x
の
上位四分位点 - 下位四分位点 を計算します.
あるベクトルまたは行列x
について, q=iqr(x)
は,x
の全エントリの四分位範囲をスカラーq
に
返します.
q=iqr(x,'r')
(または等価な
q=iqr(x,1)
) は,行方向の四分位範囲です.
この場合,行ベクトルq
の各エントリに
x
の各列の四分位範囲が返されます.
q=iqr(x,'c')
(または等価な
q=iqr(x,2)
) は,列方向の四分位範囲です.
この場合,列ベクトルq
の各エントリに
x
の各行の四分位範囲が返されます.
参考文献
Wonacott, T.H.Wonacott, R.J.; Introductory Statistics, J.Wiley-Sons, 1990.
Report an issue | ||
<< Dispersion widths | Dispersion widths | mad >> |