如何在极坐标中制作箭袋图?我有关于 r 和 theta 的数据。我试过了:
import numpy as np
radii = np.linspace(0.5,1,10)
thetas = np.linspace(0,2*np.pi,20)
theta, r = np.meshgrid(thetas, radii)
f = plt.figure()
ax = f.add_subplot(111, polar=True)
ax.quiver(theta, r, dr, dt)
其中 dr 和 dt 是 r 和 theta 方向的数据向量。