Skip to content

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.

2 participants