(fig)
| 27 | mpl.rcParams.update({'svg.hashsalt': 'asdf', 'text.usetex': usetex}) |
| 28 | |
| 29 | def plot_markers(fig): |
| 30 | # use different markers... |
| 31 | ax = fig.add_subplot() |
| 32 | x = range(10) |
| 33 | ax.plot(x, [1] * 10, marker='D') |
| 34 | ax.plot(x, [2] * 10, marker='x') |
| 35 | ax.plot(x, [3] * 10, marker='^') |
| 36 | ax.plot(x, [4] * 10, marker='H') |
| 37 | ax.plot(x, [5] * 10, marker='v') |
| 38 | |
| 39 | def plot_hatch(fig): |
| 40 | # also use different hatch patterns |
no test coverage detected
searching dependent graphs…