()
| 7512 | |
| 7513 | @image_comparison(["loglog.png"], remove_text=True, style='_classic_test', tol=0.02) |
| 7514 | def test_loglog(): |
| 7515 | fig, ax = plt.subplots() |
| 7516 | x = np.arange(1, 11) |
| 7517 | ax.loglog(x, x**3, lw=5) |
| 7518 | ax.tick_params(length=25, width=2) |
| 7519 | ax.tick_params(length=15, width=2, which='minor') |
| 7520 | |
| 7521 | |
| 7522 | @image_comparison(["test_loglog_nonpos.png"], remove_text=True, style='mpl20', |
nothing calls this directly
no test coverage detected
searching dependent graphs…