()
| 4085 | |
| 4086 | @image_comparison(['violinplot_vert_showextrema.png'], style='mpl20') |
| 4087 | def test_vert_violinplot_showextrema(): |
| 4088 | ax = plt.axes() |
| 4089 | # First 9 digits of frac(sqrt(5)) |
| 4090 | np.random.seed(236067977) |
| 4091 | data = [np.random.normal(size=100) for _ in range(4)] |
| 4092 | ax.violinplot(data, positions=range(4), showmeans=False, showextrema=True, |
| 4093 | showmedians=False) |
| 4094 | |
| 4095 | |
| 4096 | @image_comparison(['violinplot_vert_showmedians.png'], style='mpl20') |
nothing calls this directly
no test coverage detected
searching dependent graphs…