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

Conversation

bmistree
Copy link
Contributor

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.

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.
@tacaswell tacaswell added this to the v1.4.1 milestone Sep 27, 2014
@tacaswell
Copy link
Member

I think this overlaps with #3533

tacaswell added a commit that referenced this pull request Sep 30, 2014
@tacaswell
Copy link
Member

Closing, merged by cherry-picking to v1.4.x, merged as 2f9522f

@tacaswell tacaswell closed this Sep 30, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants