1,5×IQR の上下の境界線の値を計算するにはどうすればよいですか?
質問する
2012 次
1 に答える
7
boxplot.stats()
で使用される関数を使用できますboxplot()
。
R> boxplot.stats(rnorm(100))
$stats
[1] -2.3865817 -0.7195878 0.0889332 0.6237745 2.3702410
$n
[1] 100
$conf
[1] -0.123318 0.301184
$out
numeric(0)
R>
これを与えることが文書化されています:
価値:
List with named components as follows:
stats: 長さ 5 のベクトルで、下ヒゲの極値、下の「ヒンジ」、中央値、上の「ヒンジ」、および上ヒゲの極値を含みます。
n: the number of non-‘NA’ observations in the sample. conf: the lower and upper extremes of the ‘notch’ (‘if(do.conf)’). See the details. out: the values of any data points which lie beyond the extremes of the whiskers (‘if(do.out)’). Note that ‘$stats’ and ‘$conf’ are sorted in _in_creasing order, unlike S, and that ‘$n’ and ‘$out’ include any ‘+- Inf’ values.
于 2012-08-14T18:46:25.247 に答える