如何更改matplotlib极坐标图的'r'轴的位置?

时间:2013-10-20 17:08:55

标签: python matplotlib plot

如何更改matplotlib极坐标图的'r'轴的位置?

我正在尝试在极坐标图中更改r轴的位置。 目前它正被数据覆盖,但是在theta = 340-360度的数据中存在差距(在我的实际数据示例中,这实际上是大约45度)所以如果我可以把它放好那里的轴标签,在数据缺口。

import random
import numpy as np
import matplotlib.pyplot as plt
sampleSize=1000
az=[]
inc=[]
for i in range(sampleSize):
    az.append(random.randint(0,340)) #not to the full 360 to represent my natural gap in the data
    inc.append(random.randint(0,90))

plt.figure()
plt.polar(np.radians(az),inc,'o')
plt.show()

1 个答案:

答案 0 :(得分:4)

我能想到的一种方法是使用.set_rgrids方法:

f=plt.figure()
ax = f.add_axes([0.1, 0.1, 0.8, 0.8], projection='polar')
ax.plot(np.radians(az), inc, 'o')
ax.set_rgrids([10,20,30,40,50,60,70,80,90], angle=345.)

enter image description here