()
| 4136 | |
| 4137 | @image_comparison(['violinplot_horiz_baseline.png'], style='mpl20') |
| 4138 | def test_horiz_violinplot_baseline(): |
| 4139 | ax = plt.axes() |
| 4140 | # First 9 digits of frac(sqrt(19)) |
| 4141 | np.random.seed(358898943) |
| 4142 | data = [np.random.normal(size=100) for _ in range(4)] |
| 4143 | ax.violinplot(data, positions=range(4), orientation='horizontal', showmeans=False, |
| 4144 | showextrema=False, showmedians=False) |
| 4145 | |
| 4146 | |
| 4147 | @image_comparison(['violinplot_horiz_showmedians.png'], style='mpl20') |
nothing calls this directly
no test coverage detected
searching dependent graphs…