Possible Duplicate:
Changing the outlier rule in a boxplot
I need to visualize my result using box-plot.
x<-rnorm(10000)
boxplot(x,horizontal=TRUE,axes=FALSE)
How can i filter outliers during visualisation?
(1) So that i can have full image on screen without having ugly outliers.
http://postimage.org/image/szzbez0h1/a610666d/
(2) Is there any way to show outliers upto certain range? http://postimage.org/image/np28oee0b/8251d102/
Regards