According to wikipedia, normal (or Gaussian) distribution is "a very common continuous probability distribution. Normal distributions are important in statistics and are often used in the natural and social sciences to represent real-valued random variables whose distributions are not known". The mean and standard deviation in normally distributed numbers tends to 0 and 1
num_norm <- rnorm(1000, mean = 0, sd = 1) mean(num_norm)
## [1] -0.01360619
sd (num_norm)
## [1] 0.9878264