| description | Knowing the distribution of data helps us better model the world around us. It helps us to determine the likeliness of various outcomes or make an estimate of the variability of an occurrence. |
|---|
Random Variable maps the outcome of sample space into real numbers.
Example: How many heads when we toss 3 coins?
In this case, there could be 0 Heads (if all the coins land Tails up), 1 Head, 2 Heads or 3 Heads. So, the Sample Space =
Looking at the table we see just 1 case of Three Heads, but 3 cases of Two Heads, 3 cases of One Head, and 1 case of Zero Heads. So:
$$P(X = 3) = 1/8 = {HHH}$$ $$P(X = 2) = 3/8 = {HHT,HTH,THH}$$ $$P(X = 1) = 3/8 = {TTH,THT,TTH}$$ $$P(X = 0) = 1/8 = {TTT}$$
And this is what becomes the probability distribution.
Frequency distribution comes from actually doing the experiment
Now the probability distribution can be of
- When we use a probability function to describe a discrete probability distribution, we call it a probability mass function (PMF). The probability mass function,
$$f$$ , just returns the probability of the outcome. Therefore, the probability of rolling a$$3$$ is$$f(3) = 1/6$$ . - When we use a probability function to describe a continuous probability distribution, we call it a probability density function (PDF).
Now depending on the problem type one can choose the corresponding distribution and find the probability for some value of the random variable.
Some common types of probability distribution are as follows:
Types of Probability Distribution
The normal distribution is the most important probability distribution in statistics because it fits many natural phenomena. For example, heights, blood pressure, measurement error, and IQ scores follow the normal distribution.
Despite the different shapes, all forms of the normal distribution have the following characteristic properties.
- They’re all symmetric. The normal distribution cannot model skewed distributions.
- The mean, median, and mode are all equal.
- Half of the population is less than the mean and half is greater than the mean.
- The Empirical Rule, which describes the percentage of the data that fall within specific numbers of standard deviations from the mean for bell-shaped curves.
| Mean +/- standard deviations | Percentage of data contained |
|---|---|
| 1 | 68% |
| 2 | 95% |
| 3 | 99.7% |
{% embed url="https://media.licdn.com/dms/document/media/D561FAQEhP422gUwoXA/feedshare-document-pdf-analyzed/0/1691029309693?e=1695859200&t=kQbuxjFthLaefzSxbieXPgK1FVGR6IsboKub-kyAUM8&v=beta" %} Thanks to Reza Bagheri {% endembed %}
There are 3 variety of measures, required to understand a distribution:
- Measure of Central tendency
- Measure of dispersion
- Measure to describe shape of curve
Measures of central tendencies are measures, which help you describe a population, through a single metric. For example, if you were to compare Saving habits of people across various nations, you will compare average Savings rate in each of these nations. Following are the measures of central tendency:
- Mean: or the average
- Median: the value, which divides the population in two half
- Mode: the most frequent value in a population
Measures of dispersion reveal how is the population distributed around the measures of central tendency.
- Range: Difference in the maximum and minimum value in the population
- Quartiles: Values, which divide the population in 4 equal subsets (typically referred to as first quartile, second quartile and third quartile)
- Inter-quartile range: The difference in third quartile (Q3) and first quartile (Q1). By definition of quartiles, 50% of the population lies in the inter-quartile range.
- Variance: The average of the squared differences from the Mean.
- Standard Deviation: is square root of Variance
2 Distribution with different standard deviation
- Skewness: Skewness is a measure of the asymmetry. Negatively skewed curve has a long left tail and vice versa.
- Kurtosis: Kurtosis is a measure of the “peaked ness”. Distributions with higher peaks have positive kurtosis and vice-versa
Box plots are one of the easiest and most intuitive way to understand distributions. They show mean, median, quartiles and Outliers on single plot.
An unbiased estimator is an accurate statistic that’s used to approximate a population parameter. “Accurate” in this sense means that it’s neither an overestimate nor an underestimate. If an overestimate or underestimate does happen, the mean of the difference is called a “bias.” That’s just saying if the estimator (i.e., the sample mean) equals the parameter (i.e., the population mean), then it’s an unbiased estimator.
Reference: Discussion, Explanation, Implementation
Say you have some data. Say you're willing to assume that the data comes from some distribution -- perhaps Gaussian. There are an infinite number of different Gaussians that the data could have come from (which correspond to the combination of the infinite number of means and variances that a Gaussian distribution can have). MLE will pick the Gaussian (i.e., the mean and variance) that is "most consistent" with your data (the precise meaning of consistent is explained below).
So, say you've got a data set of
Maximum Likelihood Estimation can be applied to both regression and classification problems.
[LIME] Example of unbiased estimator
What is an unbiased estimator and can you provide an example for a layman to understand?
Answer
One famous example of an unrepresentative sample is the literary digest voter survey, which predicted Alfred Landon would win the 1936 presidential election. The survey was biased, as it failed to include a representative sample of low income voters who were more likely to be democrat and vote for Theodore Roosevelt.
If the sampling had been done correctly then the estimator would have been unbiased as it would match with the actual output from the population, which was win for Theodore Roosevelt.
[GOOGLE] Median of Uniform Distribution
Given 3 i.i.d. variables from an uniform distribution of
Answer
This will only be possible if atleast
[SPOTIFY] MLE of Uniform Distribution
Suppose you draw n samples from a uniform distribution U(a, b). What is the MLE estimate of a and b?
Answer
Solution recieved from the community via merge request
Let
Recall the pdf for the uniform distribution function is:
Thus, the likelihood function
The MLE will occur at the values of
[MCKINSEY] Flipping 576 Times
You flip a fair coin 576 times. Without using a calculator, calculate the probability of flipping at least 312 heads.
Answer
Fair coin,
mean =
For normal distribution, 68% of the data falls within one standard deviation, 95% percent within two standard deviations, and 99.7% within three standard deviations from the mean.
[GOOGLE] Non-normal Probability Distribution
Explain how a probability distribution could be not normal and give an example scenario.
Answer
Normal probability distributions are characterized by their famous bell shaped probability density function. The observations are centered around the mean and are equally spread around as per the standard deviation of the distribution, in case the probability distribution is a standard normal. They occur frequently in the nature, for e.g. distribution of heights
There are other types of distributions which are not normal; since normal distributions are for continuous random variable, all discrete random variables do not follow normal distributions.
There can be many examples of Non-Normal distribution:
- Flip a coin ten times and count the number of heads you get. That follows a binomial distribution
- Flip a coin until you get five heads and count the number of flips. That follows a negative binomial distribution
- Take a well-shuffled deck of cards and count how many red cards there are in the first ten. That follows a hypergeometric distribution





