前提・実現したいこと
棒グラフを表示させたい
発生している問題・エラーメッセージ
グラフの外枠と目盛りは表示されるが、棒グラフが表示しない。
該当のソースコード
Python3.8
1import numpy as np 2import matplotlib.pyplot as plt 3 4def cointoss(n, m): 5 l = [] 6 for _ in range(m): 7 r = np.random.randint(2, size=n) 8 l.append(r.sum()) 9 return l 10 11np.random.seed(0) 12fig, axes = plt.subplots(1, 2) 13 14l = cointoss(100, 1000000) 15axes[0].hist(1, range=(30, 70), bins=50, color="k") 16l = cointoss(10000, 1000000) 17axes[1].hist(1, range=(4800, 5200), bins=50, color="k") 18plt.show()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/09/14 09:07