Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug: Empty sym string for boxplots still displays fliers. #3573

Closed
wants to merge 1 commit into from

Commits on Sep 27, 2014

  1. Previous matplotlib had a bug. As per documentation, specifying empty

    string for sym argument should prevent drawing fliers for boxplots.
    
    As an example, the following script displays fliers in the boxplot
    when it shouldn't.
    
        import matplotlib.pyplot as plt
    
        data = list(range(0,100)) + [200,-200,250,-250]
        bp = plt.boxplot(data,sym='',widths=.3)
        plt.show()
    
    Added logic to ensure empty sym string does not display fliers.
    bmistree committed Sep 27, 2014
    Copy the full SHA
    24a1607 View commit details
    Browse the repository at this point in the history