Section 2.8 — Probability models for random samples#
This notebook contains the code examples from Section 2.8 Probability models for random samples of the No Bullshit Guide to Statistics.
Notebook setup#
# Figures setup
sns.set_theme(
context="paper",
style="whitegrid",
palette="colorblind",
rc={'figure.figsize': (7,4)},
)
%config InlineBackend.figure_format = 'retina'
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
Cell In[1], line 2
1 # Figures setup
----> 2 sns.set_theme(
3 context="paper",
4 style="whitegrid",
5 palette="colorblind",
6 rc={'figure.figsize': (7,4)},
7 )
9 get_ipython().run_line_magic('config', "InlineBackend.figure_format = 'retina'")
NameError: name 'sns' is not defined
# load Python modules
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
from ministats import gen_samples
from ministats import plot_samples
from ministats import plot_samples_panel
from ministats import gen_sampling_dist
from ministats import plot_sampling_dist
from ministats import plot_sampling_dists_panel
# set random seed for repeatability
np.random.seed(42)
Definitions#
\(X\): a random variable with probability distribution \(f_X\)
\(\mathbf{X} = (X_1,X_2,X_3, \ldots, X_n)\): random sample of size \(n\). Each \(X_i\) is independent copy of the random variable \(X \sim f_X\).
\(\mathbf{x} = (x_1,x_2, \ldots, x_n)\): a particular sample, which consists of \(n\) observations from the distribution \(f_X\).
statistic: any function computed from a particular sample \(\mathbf{x}\).
sampling distribution of statistic: the variability of a statistic when computed on a random sample \(\mathbf{X}\)
Sample statistics#
A statistics is any function we compute from a sample \(\mathbf{x}\).
Examples of sample statistics:
sample mean \(\overline{\mathbf{x}} = \frac{1}{n}\sum_{i=1}^n x_i\)
sample variance \(s^2 = \frac{1}{n-1}\sum_{i=1}^n \left(x_i-\overline{\mathbf{x}}\right)^2\)
median \(F_{\mathbf{x}}^{-1}(\frac{1}{2})\), where \(F_{\mathbf{x}}^{-1}\) is the inverse of the empirical CDF.
90th percentile \(F_{\mathbf{x}}^{-1}(0.9)\)
Sample mean#
Let’s focus on the sample mean:
def mean(sample):
"""
Compute the mean of the values in `sample`.
"""
return sum(sample) / len(sample)
mean([1,3,11])
5.0
Example 1.1: Samples from a uniform distribution#
from scipy.stats import uniform
rvU = uniform(0,1)
mean(rvU.rvs(10))
0.5201367359526748
mean(rvU.rvs(100))
0.459360440874598
mean(rvU.rvs(1000))
0.49846377158147603
mean(rvU.rvs(1000000))
0.5003560391875443
Example 1.2: Samples from the normal#
from scipy.stats import norm
rvZ = norm(0,1)
np.random.seed(123)
mean(rvZ.rvs(10))
-0.26951611032632794
mean(rvZ.rvs(100))
0.04528630589790067
mean(rvZ.rvs(1000))
-0.03750017240797483
mean(rvZ.rvs(1000000))
0.0006794219838587821
Example 1.3: Samples from the exponential distribution#
from scipy.stats import expon
lam = 0.2
rvE = expon(0, 1/lam)
np.random.seed(123)
mean(rvE.rvs(10))
5.334172048766929
mean(rvE.rvs(100))
4.488399438411224
mean(rvE.rvs(1000))
4.964101264394126
mean(rvE.rvs(1000000))
4.996982168599892
Law of large numbers#
TODO: demo of some sort as sample size increases
maybe using all three examples…
Sampling distributions of statistics#
Consider any function \(g\) computed based on a sample of size \(n\).
We’ll talk about the sample mean (defined as the Python function mean
above),
but the concept applies to any function \(g\).
Functions computed from samples are called statistics. you’re already familiar with several of these functions (mean, variance, standard deviation). For now we’ll keep calling them functions to make the connection with math concept of a function cleared, and also to facilitate the hands-on calculations using Python functions.
Given the random sample \(\mathbf{X}\), the quantity \(g(\mathbf{X})\) is a random variable. This should make sense intuitively, since the inputs to the function \(\mathbf{X}\) are random, the output of the function is also random.
The probability distribution of the random variable \(g(\mathbf{X})\) is called the sampling distribution of \(g\).
Example 1: sampling distribution of \(\mathbf{Mean}(\mathbf{U})\)#
In this example, we’ll study the sampling distribution of the \(\mathbf{Mean}\) statistic computed from samples of the form \(\mathbf{U} = (U_1, U_2, \ldots, U_n)\), where each \(U_i\) is an instance of the standard uniform random variable \(U \sim \mathcal{U}(0,1)\).
We can create a computer model rvU
for the random variable \(U \sim \mathcal{U}(0,1)\)
by initializing an instance of the uniform
family of distributions defined in scipy.stats
.
from scipy.stats import uniform
rvU = uniform(0,1)
We can now generate observations of the random sample \(\mathbf{U} = (U_1, U_2, \ldots, U_n)\)
by calling the method rvU.rvs(n)
,
which generates a sequence of n
observations of the random variable \(U\).
n = 30
usample = rvU.rvs(n)
usample
array([3.83370935e-02, 2.24949515e-01, 7.07156329e-01, 5.78334273e-01,
8.31641114e-01, 1.33322786e-01, 6.32126795e-01, 8.92039594e-01,
6.42959916e-01, 9.78706326e-01, 6.49778357e-01, 6.78845170e-01,
7.72245356e-01, 8.04319181e-01, 4.42603088e-01, 7.24942069e-01,
3.41343705e-01, 4.03621689e-01, 6.20305221e-01, 8.22887696e-01,
1.15535838e-01, 5.85864740e-01, 7.34576106e-04, 8.29279803e-01,
8.09188899e-01, 5.86411284e-01, 4.20921941e-01, 8.98271648e-01,
5.72498571e-01, 2.22697712e-01])
mean(usample)
0.5653956760885015
We now generate some 10 data samples of size \(n=30\), and plot the observations as a scatter plot.
Visualizing the sampling distribution of the mean.
Let’s now generate \(N=1000\) samples \(\mathbf{u}_1, \mathbf{u}_2, \mathbf{u}_3, \ldots, \mathbf{u}_N\), compute the mean of each sample to form a list of observations ubars
= \([\overline{\mathbf{u}_1}, \overline{\mathbf{u}_2}, \overline{\mathbf{u}_3}, \ldots, \overline{\mathbf{u}_N}]\).
N = 1000 # number of samples
n = 30 # sample size
ubars = []
for i in range(0, N):
usample = rvU.rvs(n)
ubar = mean(usample)
ubars.append(ubar)
We can now plot a histogram of the observations from the sampling distribution we have ubars
by calling sns.histplot(ubars)
.
We can also generate a strip plot using sns.stripplot(ubars, marker="D")
,
specifying the D
(diamond) marker to indicate we are plotting the means from each sample.
We’ll use the function sns.scatteplot(x=stats, y=-5, marker="D")
to draw a scatter plot below the histogram,
so you can see individual observations.
sns.histplot(ubars, color="r")
sns.scatterplot(x=ubars, y=-5, color="r", marker="D", alpha=0.1)
We can compute the mean and the variance of the sampling distribution:
np.mean(ubars), np.std(ubars)
(0.4984885169674512, 0.05012717312327146)
General-purpose generator of sampling distributions#
We can make generic function from the above example.
The function gen_sampling_dist
generates N
samples of size n
from the random variable object rv
and calculates the values of statistic function statfunc
from each of the samples.
The function returns a lists of the values of the statistic calculated from each sample.
def gen_sampling_dist(rv, statfunc, n, N=1000):
stats = []
for i in range(0, N):
sample = rv.rvs(n)
stat = statfunc(sample)
stats.append(stat)
return stats
ubars = gen_sampling_dist(rvU, statfunc=mean, n=30, N=1000)
np.mean(ubars), np.std(ubars)
(0.5034057868782315, 0.052257079327563884)
Example 2 (continued): sampling distribution of the mean#
Let’s define a random variable rvZ
\(\sim \mathcal{N}(\mu=0, \sigma=1)\).
from scipy.stats import norm
rvZ = norm(0,1)
We now generate some 10 data samples of size \(n=30\), and plot the observations as a scatter plot.
Visualizing the sampling distribution of the mean.
Let’s now generate \(N=1000\) samples \(\mathbf{z}_1, \mathbf{z}_2, \mathbf{z}_3, \ldots, \mathbf{z}_N\), compute the mean of each sample zbars
= \([\overline{\mathbf{z}_1}, \overline{\mathbf{z}_2}, \overline{\mathbf{z}_3}, \ldots, \overline{\mathbf{z}_N}]\).
zbars = gen_sampling_dist(rvZ, statfunc=mean, n=30)
The plot helper function plot_sampling_dist(stats)
generates a combined plot that
shows both a histogram and a scatter plot,
as shown in the figures below.
We can compute the mean and the variance of the sampling distribution:
np.mean(zbars), np.std(zbars)
(0.010759384973352467, 0.1841265266491418)
Example 3 (continued): sampling distribution of the mean#
Let’s define a random variable rvE
\(\sim \textrm{Expon}(\lambda=0.2)\).
from scipy.stats import expon
lam = 0.2 # lambda
scale = 1/lam
rvE = expon(0, scale)
We now generate some 10 data samples of size \(n=30\), and plot the observations as a scatter plot.
Visualizing the sampling distribution of the mean.
We will now generate \(N=1000\) samples \(\mathbf{e}_1, \mathbf{e}_2, \mathbf{e}_3, \ldots, \mathbf{e}_N\), compute the mean of each sample \(\overline{\mathbf{e}_1}, \overline{\mathbf{e}_2}, \overline{\mathbf{e}_3}, \ldots, \overline{\mathbf{e}_N}\).
ebars = gen_sampling_dist(rvE, statfunc=mean, n=30)
We can compute the mean and the variance of the sampling distribution:
np.mean(ebars), np.std(ebars)
(5.015271066216973, 0.9136381014198938)
Central limit theorem#
The Central Limit Theorem (CLT) is a mathy result tells us two very important practical facts:
The sampling distribution of the sample mean \(\overline{X}\) is normally distributed for samples taken for ANY random variable, as the sample size \(n\) increases.
The standard deviation of sampling distribution of the sample mean \(\overline{X}\) decrease \(\sigma_{\overline{X}} = \frac{\sigma}{\sqrt{n}}\), where \(\sigma\) is the standard deviation of the random variable \(X\).
Let’s verify both claims of the CLT by revisiting the sampling distributions we obtained above.
Example 1 (cont.): sampling distribution as a function of \(n\)#
from scipy.stats import uniform
rvU = uniform(0,1)
ubarss = plot_sampling_dists_panel(rvU, xlims=[0.25,0.75], binwidth=0.01)
ubars10, ubars30, ubars100 = ubarss
np.std(ubars10), np.std(ubars30), np.std(ubars100)
(0.08597715741110862, 0.05307001005012156, 0.02863960146457155)
Let’s compare these observations from the simulation, to the theoretical standard deviations predicted by the CLT.
from math import sqrt
rvU.std()/sqrt(10), rvU.std()/sqrt(30), rvU.std()/sqrt(100)
(0.09128709291752768, 0.05270462766947299, 0.028867513459481287)
Example 2 (cont.): sampling distribution as a function of \(n\)#
from scipy.stats import norm
mu = 0
sigma = 1
rvZ = norm(mu, sigma)
zbarss = plot_sampling_dists_panel(rvZ, xlims=[-1, 1], binwidth=0.02)
zbars10, zbars30, zbars100 = zbarss
np.std(zbars10), np.std(zbars30), np.std(zbars100)
(0.3236182149202699, 0.18708485140622844, 0.10157298361492494)
Let’s compare these observations from the
from math import sqrt
rvZ.std()/sqrt(10), rvZ.std()/sqrt(30), rvZ.std()/sqrt(100)
(0.31622776601683794, 0.18257418583505536, 0.1)
Example 3 (cont.): sampling distribution as a function of \(n\)#
from scipy.stats import expon
lam = 0.2 # lambda
scale = 1/lam
rvE = expon(0, scale)
ebarss = plot_sampling_dists_panel(rvE, xlims=[-0.1, 10], binwidth=0.2)
ebars10, ebars30, ebars100 = ebarss
np.std(ebars10), np.std(ebars30), np.std(ebars100)
(1.6424071184557227, 0.8988315431033435, 0.51653333470598)
Let’s compare these observations from the
from math import sqrt
rvE.std()/sqrt(10), rvE.std()/sqrt(30), rvE.std()/sqrt(100)
(1.5811388300841895, 0.9128709291752769, 0.5)
Discussion#
CLT is the reason why statistics works. We can use properties of sample to estimate the parameters of the population, and our estimates get more and more accurate as the samples get larger.
Exercises#
See main text.