在matplotlib极坐标图上旋转theta = 0

时间:2014-11-13 10:22:32

标签: python matplotlib plot

我有以下示例代码:

import numpy as np
import matplotlib.pyplot as plt
import random

data_theta = range(10,171,10)

data_theta_rad = []
for i in data_theta:
    data_theta_rad.append(float(i)*np.pi/180.0)

data_r = random.sample(range(70, 90), 17)

print data_theta
print data_r

ax = plt.subplot(111, polar=True)
ax.plot(data_theta_rad, data_r, color='r', linewidth=3)
ax.set_rmax(95)
# ax.set_rmin(70.0)
ax.grid(True)

ax.set_title("Example", va='bottom')
plt.show()

...产生这样的东西: enter image description here

...但我想将theta = 0设置为'West'。如下所示:

enter image description here

有关如何使用matplotlib执行此操作的任何想法(我在powerpoint中创建了下面的图片)?

2 个答案:

答案 0 :(得分:21)

只需使用:

ax.set_theta_zero_location("W")

matplotlib的documentation中的更多信息。

答案 1 :(得分:8)

更灵活的方式:

ax.set_theta_offset(pi)

您可以任意旋转轴,只需将pi替换为您想要的角度。