有没有办法在没有颤动的情况下绘制颤动键或将颤动隐藏在matplotlib中?

时间:2019-07-08 07:48:53

标签: python matplotlib

我正在学习post

这是我的代码

f, ax = plt.subplots()
ax.set_xlim([-1, 1])
ax.set_ylim([-1, 1])
Q = ax.quiver(0,0,0,1)
qk = plt.quiverkey(Q, .8, .8, 5, r'$2 \frac{m}{s}$', labelpos='E',
                   coordinates='figure', color='r')

5

我需要的只是红色的(带有标签的箭头),有没有办法在没有颤动的情况下绘制颤动键或将颤动隐藏在matplotlib中?

1 个答案:

答案 0 :(得分:0)

我想到的最简单的方法是使用'none'作为颜色。甚至color='white'都能胜任,但我更喜欢'none'

Q = ax.quiver(0,0,0,1, color='none')
qk = plt.quiverkey(Q, .8, .8, 5, r'$2 \frac{m}{s}$', labelpos='E',
               coordinates='figure', color='r')

enter image description here