を返す私はこのPythonコードを持っている:matplotlibのは、空のプロット
import matplotlib.pyplot as plt
import matplotlib.animation as animation
import numpy as np
n = 100
x = np.random.randn(n)
def update(curr):
if curr == n:
a.event_source.stop()
plt.cla()
bins = np.arange(-4,4,0.5)
plt.hist(x[:curr],bins = bins)
plt.gca().set_title('Samplng the Normal distribution')
plt.gca().set_ylabel('Frequency')
plt.gca().set_xlabel('Value')
plt.annotate('n = {}'.format(curr), [3,27])
fig = plt.figure()
a = animation.FuncAnimation(fig, update, interval = 100)
それはすべての3が描くが、私はそれを実行したときに、私のプロットは空で、何も起こらない正規分布のプロットを更新する必要があります。なぜなのかご存知ですか?
ありがとうございました!
実際にバックエンドだったと思いますが、あなたは正しいです。私はそれを自動に変更し、今すぐ動作します。ありがとう! –