動くグラフ
I simulated and animated 500 instances of the Birthday Paradox. The result is almost identical to the analytical formula [OC] from dataisbeautiful
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
from matplotlib import pyplot as plt import numpy as np import time from IPython.display import display, clear_output %matplotlib inline fig = plt.figure(figsize=(16,10)) axe = fig.add_subplot(111) # 繰り返す回数を決める num = 5 for i in range(num): A = np.random.randn(1000) axe.hist(A,bins=50) axe.set_xlim([-4,4]) axe.set_ylim([0,70]) display(fig) clear_output(wait = True) # 最後の出力は消さないので、if文で最後だけ消さないようにする。 if i != num-1: axe.cla() |
from IPython.display import display, clear_output
display(fig) 画像を出力します。
clear_output(wait = True) 出力結果を消します。
axeに入れられたグラフデータを削除します。
コメントを残す