(ax, rc_dict)
| 3899 | |
| 3900 | |
| 3901 | def _rc_test_bxp_helper(ax, rc_dict): |
| 3902 | x = np.linspace(-7, 7, 140) |
| 3903 | x = np.hstack([-25, x, 25]) |
| 3904 | with matplotlib.rc_context(rc_dict): |
| 3905 | ax.boxplot([x, x]) |
| 3906 | return ax |
| 3907 | |
| 3908 | |
| 3909 | @image_comparison(['boxplot_rc_parameters.png'], |
no test coverage detected
searching dependent graphs…