()
| 207 | |
| 208 | @image_comparison(['polar_theta_position.png'], style='default') |
| 209 | def test_polar_theta_position(): |
| 210 | r = np.arange(0, 3.0, 0.01) |
| 211 | theta = 2*np.pi*r |
| 212 | |
| 213 | fig = plt.figure() |
| 214 | ax = fig.add_axes((0.1, 0.1, 0.8, 0.8), polar=True) |
| 215 | ax.plot(theta, r) |
| 216 | ax.set_theta_zero_location("NW", 30) |
| 217 | ax.set_theta_direction('clockwise') |
| 218 | |
| 219 | |
| 220 | @image_comparison(['polar_rlabel_position.png'], style='default') |
nothing calls this directly
no test coverage detected
searching dependent graphs…