NumPy Tutorial · NumPy Random
Normal Distribution
Learn all about Normal Distribution in this comprehensive tutorial.
5 min read advanced
- •The Normal Distribution is one of the most important distributions.
Normal Distribution
The Normal Distribution is one of the most important distributions.
It is also called the Gaussian Distribution after the German mathematician Carl Friedrich Gauss.
It fits the probability distribution of many events, eg. IQ Scores, Heartbeat etc.
Use the random.normal() method to get a Normal Data Distribution.
It has three parameters:
loc - (Mean) where the peak of the bell exists.
scale - (Standard Deviation) how flat the graph distribution should be.
size - The shape of the returned array.
python
python
Visualization of Normal Distribution
python
Note: Note: The curve of a Normal Distribution is also known as the Bell Curve because of the bell-shaped curve.
Module quiz
2 questions1
Which of the following is true about Normal Distribution?
2
What is the most common pitfall when working with Normal Distribution?
Answer all questions to submit.