Fondements de la probabilité en Python
Alexander A. Ramírez M.
CEO @ Synergy Vision



$$ $$

$$ $$

$$ $$

$$ $$











# Importer norm, matplotlib.pyplot et seaborn
from scipy.stats import norm
import matplotlib.pyplot as plt
import seaborn as sns
# Créer l'échantillon avec norm.rvs()
sample = norm.rvs(loc=0, scale=1, size=10000, random_state=13)
# Tracer l'échantillon
sns.distplot(sample)
plt.show()

Fondements de la probabilité en Python