이산확률분포 그려보기 (Python)
파이썬 코드로 이산확률분포가 파라미터에 따라 어떻게 그려지는지 알아보자. import numpy as np from scipy.special import binom, comb import matplotlib.pyplot as plt Binomial Distribution, 이항분포 def binomial(x, n, theta): return comb(n, x) * (theta ** x) * ((1 - theta) ** (n - x)) params = [(20, 0.3), (20, 0.5), (20, 0.7), (26, 0.9)] fig, axes = plt.subplots(1, 4, figsize=(24, 4)) for ax, (n, theta) in zip(axes, params): print(n, t..
2023. 3. 10.