web-dev-qa-db-ja.com

スパイダーでmatplotlibのアニメーションが機能しない

私はpythonとstackoverflowの両方に不慣れです。matplotlibで例を見ていきます。運が悪かったので、この問題の解決策を探しましたが、 以前は回答されなかった質問 同じ問題のあるスタックオーバーフロー。

基本的に、私は matplotlib の例から利用可能なコードをコピーしました。例えば:

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
def data_gen(t=0):
    cnt = 0
    while cnt < 1000:
        cnt += 1
        t += 0.1
        yield t, np.sin(2*np.pi*t) * np.exp(-t/10.)
def init():
    ax.set_ylim(-1.1, 1.1)
    ax.set_xlim(0, 10)
    del xdata[:]
    del ydata[:]
    line.set_data(xdata, ydata)
    return line,

fig, ax = plt.subplots()
line, = ax.plot([], [], lw=2)
ax.grid()
xdata, ydata = [], []


def run(data):
    # update the data
    t, y = data
    xdata.append(t)
    ydata.append(y)
    xmin, xmax = ax.get_xlim()

    if t >= xmax:
        ax.set_xlim(xmin, 2*xmax)
        ax.figure.canvas.draw()
    line.set_data(xdata, ydata)

    return line,

ani = animation.FuncAnimation(fig, run, data_gen, blit=False, interval=10,
                          repeat=False, init_func=init)
plt.show()

Anaconda 2(python 2.7)と3(python 3.5)の両方でさまざまなアニメーションの例を実行しましたが、どちらもアニメーションなしの空白のプロットを提供します。ただし、各アニメーションはEnthought Canopyで完全に機能します。

スパイダーを使用するときに私が見逃している簡単なものはありますか?

15
Medalgardr

IPythonコンソールでアニメーションを実行するには、バックエンドを変更する必要があります。これは、アニメーションの前に%matplotlib qtコマンドを実行することで実行できます。

毎回このコマンドを使用したくない場合は、Tools > Preferences > IPython Console > Graphics > Backendに移動して、"Inline"から"Automatic"に変更できます。

更新:2018年2月、これは現在python> Preferencesにあります。ウィンドウのLHペインでウィンドウのIPythonコンソールを選択します。グラフィックスタブを選択すると、バックエンドがそこにあります。

詳細は this をご覧ください。

20
Tony Babarino

値を変更したら、再起動することを忘れないでくださいIDE(Spyder、PyCharmなど)

2
Darshak Mehta