()
| 4075 | |
| 4076 | @image_comparison(['violinplot_vert_showmeans.png'], style='mpl20') |
| 4077 | def test_vert_violinplot_showmeans(): |
| 4078 | ax = plt.axes() |
| 4079 | # First 9 digits of frac(sqrt(3)) |
| 4080 | np.random.seed(732050807) |
| 4081 | data = [np.random.normal(size=100) for _ in range(4)] |
| 4082 | ax.violinplot(data, positions=range(4), showmeans=True, showextrema=False, |
| 4083 | showmedians=False) |
| 4084 | |
| 4085 | |
| 4086 | @image_comparison(['violinplot_vert_showextrema.png'], style='mpl20') |
nothing calls this directly
no test coverage detected
searching dependent graphs…