()
| 4156 | |
| 4157 | @image_comparison(['violinplot_horiz_showmeans.png'], style='mpl20') |
| 4158 | def test_horiz_violinplot_showmeans(): |
| 4159 | ax = plt.axes() |
| 4160 | # First 9 digits of frac(sqrt(29)) |
| 4161 | np.random.seed(385164807) |
| 4162 | data = [np.random.normal(size=100) for _ in range(4)] |
| 4163 | ax.violinplot(data, positions=range(4), orientation='horizontal', showmeans=True, |
| 4164 | showextrema=False, showmedians=False) |
| 4165 | |
| 4166 | |
| 4167 | @image_comparison(['violinplot_horiz_showextrema.png'], style='mpl20') |
nothing calls this directly
no test coverage detected
searching dependent graphs…