()
| 3871 | savefig_kwarg={'dpi': 40}, |
| 3872 | style='default') |
| 3873 | def test_boxplot_sym(): |
| 3874 | x = np.linspace(-7, 7, 140) |
| 3875 | x = np.hstack([-25, x, 25]) |
| 3876 | fig, ax = plt.subplots() |
| 3877 | |
| 3878 | ax.boxplot([x, x], sym='gs') |
| 3879 | ax.set_ylim(-30, 30) |
| 3880 | |
| 3881 | |
| 3882 | @image_comparison(['boxplot_autorange_false_whiskers.png', |