在matplotlib中没有网格的极坐标图

时间:2011-06-17 12:02:02

标签: python matplotlib

有没有办法在matplotlib中转换极坐标图的网格?我试过了matplotlib.pyplot.rgrids([], []),但它不起作用。

1 个答案:

答案 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()