web-dev-qa-db-fra.com

Comment supprimer les valeurs aberrantes dans boxplot dans R?

Duplicata possible:
Modification de la règle aberrante dans un boxplot

J'ai besoin de visualiser mon résultat en utilisant le box-plot.

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

Comment puis-je filtrer les valeurs aberrantes pendant la visualisation?

(1) Pour que je puisse avoir une image complète à l'écran sans avoir de vilaines valeurs aberrantes.

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

(2) Existe-t-il un moyen d'afficher les valeurs aberrantes jusqu'à une certaine plage? http://postimage.org/image/np28oee0b/8251d102/

Cordialement

22
Manish

Voir ?boxplot pour toute l'aide dont vous avez besoin.

 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)

Et pour étendre la portée des moustaches et supprimer les valeurs aberrantes à l'intérieur de cette plage:

   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