有没有办法在matplotlib中转换极坐标图的网格?我试过了matplotlib.pyplot.rgrids([], [])
,但它不起作用。
答案 0 :(得分:18)
在axes
个实例中,拨打grid(False)
。
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
ax = fig.add_subplot(111, polar=True)
ax.grid(False)
r = np.arange(0,1,0.001)
theta = 2*2*np.pi*r
ax.plot(theta,r)
plt.show()