()
| 3991 | @image_comparison(['boxplot_no_inverted_whisker.png'], |
| 3992 | remove_text=True, savefig_kwarg={'dpi': 40}, style='default') |
| 3993 | def test_boxplot_no_weird_whisker(): |
| 3994 | x = np.array([3, 9000, 150, 88, 350, 200000, 1400, 960], |
| 3995 | dtype=np.float64) |
| 3996 | ax1 = plt.axes() |
| 3997 | ax1.boxplot(x) |
| 3998 | ax1.set_yscale('log') |
| 3999 | ax1.yaxis.grid(False, which='minor') |
| 4000 | ax1.xaxis.grid(False) |
| 4001 | |
| 4002 | |
| 4003 | def test_boxplot_bad_medians(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…