()
| 1866 | |
| 1867 | |
| 1868 | def test_marker_as_markerstyle(): |
| 1869 | fix, ax = plt.subplots() |
| 1870 | m = mmarkers.MarkerStyle('o') |
| 1871 | ax.plot([1, 2, 3], [3, 2, 1], marker=m) |
| 1872 | ax.scatter([1, 2, 3], [4, 3, 2], marker=m) |
| 1873 | ax.errorbar([1, 2, 3], [5, 4, 3], marker=m) |
| 1874 | |
| 1875 | |
| 1876 | @image_comparison(['markevery.png'], remove_text=True, style='mpl20') |