Is there any way of hiding the outliers when plotting a boxplot in matplotlib (python)?
I'm using the simplest way of plotting it:
from pylab import *
boxplot([1,2,3,4,5,10])
show()
This gives me the following plot:
(I cannot post the image because I have not enough reputation, but basically it is a boxplot with Q1 at y=1, Q3 at y=5, and the outlier at y=10)
I would like to remove the outlier at y=10, so that the plot only shows from Q1 to Q3 (in this case from 1 to 5).