MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / test_polar_rmin

Function test_polar_rmin

lib/matplotlib/tests/test_polar.py:153–161  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

151
152@image_comparison(['polar_rmin.png'], style='default')
153def test_polar_rmin():
154 r = np.arange(0, 3.0, 0.01)
155 theta = 2*np.pi*r
156
157 fig = plt.figure()
158 ax = fig.add_axes((0.1, 0.1, 0.8, 0.8), polar=True)
159 ax.plot(theta, r)
160 ax.set_rmax(2.0)
161 ax.set_rmin(0.5)
162
163
164@image_comparison(['polar_negative_rmin.png'], style='default')

Callers

nothing calls this directly

Calls 5

figureMethod · 0.80
add_axesMethod · 0.80
set_rmaxMethod · 0.80
set_rminMethod · 0.80
plotMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…