sukhdev01 / Central-Limit-Theorem

Brief into about Central Limit Theorem (CLT) and Python code for finding mean of CLT and plotting using seaborn and matplotlib on normal, uniform, multi-nomial distribution.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Central-Limit-Theorem

It is the sampling distribution of the sampling means approaches a normal distribution as the sample size gets larger, no matter what the shape of the data distribution. An essential component of the Central Limit Theorem is the average of sample means will be the population mean. Similarly, if you find the average of all of the standard deviations in your sample, you will find the actual standard deviation for your population.

μ_sample = μ               # mean
σ_sample = σ / sqrt(n)     # standard deviation
σ_sample ^2 = σ^2 / n      # variance

Where, (n>= 30) and μ = Population mean, σ = Population standard deviation, μ_sample = Sample mean, σ_sample = Sample standard deviation, n = Sample size

Note:- Fully Commented code to get it better And Created using Colaboratory for more clearity. Thanks!

About

Brief into about Central Limit Theorem (CLT) and Python code for finding mean of CLT and plotting using seaborn and matplotlib on normal, uniform, multi-nomial distribution.


Languages

Language:Jupyter Notebook 100.0%