메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
해커용 베이지안 방법 스타일 시트 #
이 예는 Bayesian Methods for Hackers [ 1 ] 온라인 책에서 사용된 스타일을 보여줍니다.
import numpy as np
import matplotlib.pyplot as plt
# Fixing random state for reproducibility
np.random.seed(19680801)
plt.style.use('bmh')
def plot_beta_hist(ax, a, b):
ax.hist(np.random.beta(a, b, size=10000),
histtype="stepfilled", bins=25, alpha=0.8, density=True)
fig, ax = plt.subplots()
plot_beta_hist(ax, 10, 10)
plot_beta_hist(ax, 4, 12)
plot_beta_hist(ax, 50, 12)
plot_beta_hist(ax, 6, 55)
ax.set_title("'bmh' style sheet")
plt.show()