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

ush*_*r96 2 python plot matplotlib

如何更改 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()
Run Code Online (Sandbox Code Playgroud)

CT *_*Zhu 5

我能想到的.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.)
Run Code Online (Sandbox Code Playgroud)

在此处输入图片说明