8000 Default boxplot style rebase by jenshnielsen · Pull Request #6481 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Default boxplot style rebase #6481

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

Merged
merged 13 commits into from
May 30, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
TST: more lenient tolerances for bxp
  • Loading branch information
phobson authored and jenshnielsen committed May 30, 2016
commit 1eac1a2cbf79e013725592b9c57aee6245dd2611
6 changes: 4 additions & 2 deletions lib/matplotlib/tests/test_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1477,7 +1477,8 @@ def test_bxp_with_xlabels():
@image_comparison(baseline_images=['bxp_horizontal'],
remove_text=True, extensions=['png'],
savefig_kwarg={'dpi': 40},
style='default')
style='default',
tol=0.1)
def test_bxp_horizontal():
np.random.seed(937)
logstats = matplotlib.cbook.boxplot_stats(
Expand All @@ -1492,7 +1493,8 @@ def test_bxp_horizontal():
@image_comparison(baseline_images=['bxp_with_ylabels'],
extensions=['png'],
savefig_kwarg={'dpi': 40},
style='default')
style='default',
tol=0.1,)
def test_bxp_with_ylabels():
np.random.seed(937)
logstats = matplotlib.cbook.boxplot_stats(
Expand Down
0