Как убрать выбросы в boxplot в R?

Возможный дубликат:
Изменение правила выброса в боксплоте

Мне нужно визуализировать мой результат, используя box-plot.

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

Как я могу отфильтровать выбросы во время визуализации?

(1) Так, чтобы у меня было полное изображение на экране без отвратительных выбросов.

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

(2) Есть ли способ показать выбросы до определенного диапазона? http://postimage.org/image/np28oee0b/8251d102/

С уважением

1 ответ

Решение

Увидеть ?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)
Другие вопросы по тегам