Normal distribution:
- Symmetric around the mean
- Peaks at the mean (the most probably value)
We can generate normal (Gaussian) distributions in Python by using random.gauss(mean, std)
.
Nov 08, 20241 min read
Normal distribution:
P(x)=σ2π1∗e−2σ2(x−μ)2
e=∑n=0∞n!1
We can generate normal (Gaussian) distributions in Python by using random.gauss(mean, std)
.