()
| 4105 | |
| 4106 | @image_comparison(['violinplot_vert_showall.png'], style='mpl20') |
| 4107 | def test_vert_violinplot_showall(): |
| 4108 | ax = plt.axes() |
| 4109 | # First 9 digits of frac(sqrt(11)) |
| 4110 | np.random.seed(316624790) |
| 4111 | data = [np.random.normal(size=100) for _ in range(4)] |
| 4112 | ax.violinplot(data, positions=range(4), showmeans=True, showextrema=True, |
| 4113 | showmedians=True, |
| 4114 | quantiles=[[0.1, 0.9], [0.2, 0.8], [0.3, 0.7], [0.4, 0.6]]) |
| 4115 | |
| 4116 | |
| 4117 | @image_comparison(['violinplot_vert_custompoints_10.png'], style='mpl20') |
nothing calls this directly
no test coverage detected
searching dependent graphs…