This notebook gives a graphical explaination of the central limit theorem and shows its consequences for quantitative genetics.
Take a number of random numbers from the uniform distribution and sum them up. Repeat that for a given number of times and look at the distribution of the sums.
n_nr_random_numbers <- 100 n_nr_repeat <- 10 vec_random_numbers <- runif(100) sum_random_numbers <- sum(vec_random_numbers)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.