()
| 4095 | |
| 4096 | @image_comparison(['violinplot_vert_showmedians.png'], style='mpl20') |
| 4097 | def test_vert_violinplot_showmedians(): |
| 4098 | ax = plt.axes() |
| 4099 | # First 9 digits of frac(sqrt(7)) |
| 4100 | np.random.seed(645751311) |
| 4101 | data = [np.random.normal(size=100) for _ in range(4)] |
| 4102 | ax.violinplot(data, positions=range(4), showmeans=False, showextrema=False, |
| 4103 | showmedians=True) |
| 4104 | |
| 4105 | |
| 4106 | @image_comparison(['violinplot_vert_showall.png'], style='mpl20') |
nothing calls this directly
no test coverage detected
searching dependent graphs…