使用Python绘制极坐标图:更改中心点

时间:2016-02-05 05:39:58

标签: python matplotlib

我在下面做了如下图:

Polar plot

使用此代码:

plt.figure(figsize=(8,8))
ax = plt.subplot(111, projection = 'polar')
ax.plot(radians(g_long), distances, 'r.')
ax.set_ylim(0.0, 16.0)
ax.set_theta_offset(-0.5*pi)
ax.grid(True)

我正在努力转移'根据我的变换图,它在当前位于(r,theta)=(0,0)到(r,theta)=(8,0)的中心点。

到目前为止,我还没能找到解决方案,遗憾的是。

0 个答案:

没有答案