()
| 499 | |
| 500 | @image_comparison(['polar_log.png'], style='default') |
| 501 | def test_polar_log(): |
| 502 | fig = plt.figure() |
| 503 | ax = fig.add_subplot(polar=True) |
| 504 | |
| 505 | ax.set_rscale('log') |
| 506 | ax.set_rlim(1, 1000) |
| 507 | |
| 508 | n = 100 |
| 509 | ax.plot(np.linspace(0, 2 * np.pi, n), np.logspace(0, 2, n)) |
| 510 | |
| 511 | |
| 512 | @check_figures_equal() |
nothing calls this directly
no test coverage detected
searching dependent graphs…