まず、(これによってパフォーマンスはまったく変わりません)、次のようにコードをクリーンアップすることを検討してください:
import matplotlib.pyplot as plt
import numpy as np
import time
x = np.arange(0, 2*np.pi, 0.01)
y = np.sin(x)
fig, axes = plt.subplots(nrows=6)
styles = ['r-', 'g-', 'y-', 'm-', 'k-', 'c-']
lines = [ax.plot(x, y, style)[0] for ax, style in zip(axes, styles)]
fig.show()
tstart = time.time()
for i in xrange(1, 20):
for j, line in enumerate(lines, start=1):
line.set_ydata(np.sin(j*x + i/10.0))
fig.canvas.draw()
print 'FPS:' , 20/(time.time()-tstart)
上記の例では、約10fpsです。
簡単なメモですが、実際のユースケースによっては、matplotlibは最適な選択ではない場合があります。リアルタイム表示ではなく、出版品質の図を対象としています。
ただし、この例を高速化するためにできることはたくさんあります。
これが遅いのには、主に2つの理由があります。
1)を呼び出すと、すべてがfig.canvas.draw()
再描画されます。それはあなたのボトルネックです。あなたのケースでは、軸の境界、目盛りラベルなどのようなものを再描画する必要はありません。
2)あなたの場合、目盛りラベルがたくさんあるサブプロットがたくさんあります。これらの描画には時間がかかります。
これらはどちらもブリッティングを使用して修正できます。
ブリットを効率的に行うには、バックエンド固有のコードを使用する必要があります。実際には、スムーズなアニメーションが本当に心配な場合は、通常、matplotlibプロットを何らかのguiツールキットに埋め込むので、これはそれほど問題にはなりません。
しかし、あなたが何をしているかについてもう少し知ることなしに、私はあなたを助けることができません。
それにもかかわらず、それを実行するための合理的な方法で、まだ中立的な方法があります。
import matplotlib.pyplot as plt
import numpy as np
import time
x = np.arange(0, 2*np.pi, 0.1)
y = np.sin(x)
fig, axes = plt.subplots(nrows=6)
fig.show()
# We need to draw the canvas before we start animating...
fig.canvas.draw()
styles = ['r-', 'g-', 'y-', 'm-', 'k-', 'c-']
def plot(ax, style):
return ax.plot(x, y, style, animated=True)[0]
lines = [plot(ax, style) for ax, style in zip(axes, styles)]
# Let's capture the background of the figure
backgrounds = [fig.canvas.copy_from_bbox(ax.bbox) for ax in axes]
tstart = time.time()
for i in xrange(1, 2000):
items = enumerate(zip(lines, axes, backgrounds), start=1)
for j, (line, ax, background) in items:
fig.canvas.restore_region(background)
line.set_ydata(np.sin(j*x + i/10.0))
ax.draw_artist(line)
fig.canvas.blit(ax.bbox)
print 'FPS:' , 2000/(time.time()-tstart)
これは私に〜200fpsを与えます。
これをもう少し便利にするために、 animations
、matplotlibの最近のバージョンにはモジュールがあります。
例として:
import matplotlib.pyplot as plt
import matplotlib.animation as animation
import numpy as np
x = np.arange(0, 2*np.pi, 0.1)
y = np.sin(x)
fig, axes = plt.subplots(nrows=6)
styles = ['r-', 'g-', 'y-', 'm-', 'k-', 'c-']
def plot(ax, style):
return ax.plot(x, y, style, animated=True)[0]
lines = [plot(ax, style) for ax, style in zip(axes, styles)]
def animate(i):
for j, line in enumerate(lines, start=1):
line.set_ydata(np.sin(j*x + i/10.0))
return lines
# We'd normally specify a reasonable "interval" here...
ani = animation.FuncAnimation(fig, animate, xrange(1, 200),
interval=0, blit=True)
plt.show()