Python ile Olasılığın Temelleri
Alexander A. Ramírez M.
CEO @ Synergy Vision



$$ $$

$$ $$

$$ $$

$$ $$











# norm, matplotlib.pyplot ve seaborn'u içe aktar
from scipy.stats import norm
import matplotlib.pyplot as plt
import seaborn as sns
# norm.rvs() ile örnek oluştur
sample = norm.rvs(loc=0, scale=1, size=10000, random_state=13)
# Örneği görselleştir
sns.distplot(sample)
plt.show()

Python ile Olasılığın Temelleri