web-dev-qa-db-ja.com

Rの箱ひげ図の外れ値を削除するにはどうすればよいですか?

可能性のある複製:
箱ひげ図の外れ値ルールの変更

ボックスプロットを使用して結果を視覚化する必要があります。

x<-rnorm(10000)
boxplot(x,horizontal=TRUE,axes=FALSE)

視覚化中に外れ値をフィルタリングするにはどうすればよいですか?

(1)い外れ値を持たずに画面に完全な画像を表示できるようにします。

http://postimage.org/image/szzbez0h1/a610666d/

(2)特定の範囲まで外れ値を表示する方法はありますか? http://postimage.org/image/np28oee0b/8251d102/

よろしく

22
Manish

見る ?boxplot必要なすべてのヘルプ。

 outline: if ‘outline’ is not true, the outliers are not drawn (as
          points whereas S+ uses lines).

boxplot(x,horizontal=TRUE,axes=FALSE,outline=FALSE)

そして、ウィスカの範囲を拡張し、この範囲内の外れ値を抑制するために:

   range: this determines how far the plot whiskers extend out from the
          box.  If ‘range’ is positive, the whiskers extend to the most
          extreme data point which is no more than ‘range’ times the
          interquartile range from the box. A value of zero causes the
          whiskers to extend to the data extremes.

# change the value of range to change the whisker length
boxplot(x,horizontal=TRUE,axes=FALSE,range=2)
46
thelatemail