box plot limit outliers pandas code example
Example 1: matplotlib boxplot remove outliers
boxplot([1,2,3,4,5,10], showfliers=False)
Example 2: plt boxplot pandas
>>> data = np.random.randn(25, 4)
>>> df = pd.DataFrame(data, columns=list('ABCD'))
>>> ax = df.plot.box()