0
プロットのループ中に矢印の位置を更新したいと思います。私はこのパッチが矩形である状況に似た質問があるこのpostを見つけました。以下、上記の記事で提案されているソリューションにArrowパッチが追加されました。matplotlibの矢印位置を更新する
from matplotlib import pyplot as plt
from matplotlib.patches import Rectangle, Arrow
import numpy as np
nmax = 10
xdata = range(nmax)
ydata = np.random.random(nmax)
fig, ax = plt.subplots()
ax.plot(xdata, ydata, 'o-')
ax.xaxis.set_ticks(xdata)
plt.ion()
rect = plt.Rectangle((0, 0), nmax, 1, zorder=10)
ax.add_patch(rect)
arrow = Arrow(0,0,1,1)
ax.add_patch(arrow)
for i in range(nmax):
rect.set_x(i)
rect.set_width(nmax - i)
#arrow.what --> which method?
fig.canvas.draw()
plt.pause(0.1)
Arrowパッチの問題点は、明らかに、Rectangleパッチの位置と関連した設定方法がないことです。あらゆるヒントは大歓迎です。