8 Distributions

Can you guess the weight of this bull? What about you and 99 friends?


1 Describing the shape of data


Overview

I. A curve has been found representing the frequency distribution of standard deviations of samples drawn from a normal population.

  1. A curve has been found representing the frequency distribution of values of the means of such samples, when these values are measured from the mean of the population in terms of the standard deviation of the sample

- Gosset. 1908, Biometrika 6:25.

The idea of sampling underpins traditional statistics and is fundamental to the practice of statistics. The basic idea is usually that there is a population of interest, which we cannot directly measure. We sample the population in order to estimate the real measures of the population. Because we merely take samples, there is error assiociated with our estimates and the error depends on both the real variation in the population, but also on chance to do with which subjects are actually in our sample, as well as the size of our sample. Traditional statistical inference within Null Hypothesis Significance Testing (NHST) exploits our estimates of error associated with our samples. While this is an important concept, it is beyond the scope of this page to review it, but you may wish to refresh your knowledge by consulting a reference, such as Irizarry 2020 Chs 13-16.

In this page, we will briefly look at some diagnostic tools in R for examining the distribution of data, and talk about a few important distributions that are common to encounter.


1.1 Objectives

  • Use of the histogram

  • Gaussian: that ain’t normal

  • Poisson

  • Binomial

  • Diagnosing the distribution

  • Practice exercises


2 Use of the histogram

The histogram is a graph type that typically plots a numeric variable on the x axis (either continuous numeric values, or integers), and has the frequency of observations on the y axis (i.e., the count), or sometimes the proportion of observation on the y axis.


2.1 Typical histogram for continuous variable

# Try this:

# Adult domestic cats weight approximately 4 Kg on average
# with a standard deviation of approximately +/1 0.5 Kg

# Let's simulate some fake weight data for 10,000 cats
help(rnorm) # A very useful function
help(set.seed) # If we use this, we can replicate "random data"

help(hist)
set.seed(42)
cats <- rnorm(n = 10000,  # 10,000 cats
              mean = 4,   
              sd = 0.5)

cats[1:10] # The first 10 cats
 [1] 4.685479 3.717651 4.181564 4.316431 4.202134 3.946938 4.755761 3.952670
 [9] 5.009212 3.968643
hist(x = cats,
     xlab = "Cat weight (Kg)")


Notice a few things:

  • The bars are the count of the number of cats at each weight on the x axis

  • The width of each vertical column is a (non-overlapping) range of weights - these are called “bins” and can be defined, but usually are automatically determined based on the data

  • For count data, each bar is usually one or more integer values, rather than a range of continuous values (as it is for cat weight above in the figure)

  • The shape of a histogram can be used to infer the distribution of the data


2.2 Sampling and populations

Remember the concept of population versus sample? Well, let’s assume there are only 10,000 cats in the whole world and we just measured the whole population (usually not possible, remember). In this case we can calculate the exact population mean.

What if we tried to estimate the real mean of our population from a sample of around 100 cats? The theory is that our sample mean would be expected to differ from the real population mean randomly. If we did a bunch of samples, most of the guesses would be close to the real population mean and less would be farther out, but all of these sample means would be expected to randomly vary, either less than or greater than the true population mean. We can examine this with a simulation of samples.


# Try this:
# simulation of samples

help(sample) # randomly sample the cats vector
help(vector) # Initialize a variable to hold our sample means
# We will do a "for loop" with for()


mymeans <- vector(mode = "numeric",
                  length = 100)
mymeans # Empty
  [1] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
 [38] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
 [75] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
for(i in 1:100){
  mysample <- sample(x = cats, # Takes a random sample
                    size = 30)
  
  mymeans[i] <- mean(mysample) # stores sample mean in ith vector address
  }

mymeans # Our samples
  [1] 3.899662 3.963986 4.019242 3.975304 3.903256 3.877346 3.911380 4.013805
  [9] 3.989836 3.950881 4.002299 4.024990 4.091362 4.074493 3.989800 3.974894
 [17] 4.000338 3.873104 3.945492 4.061428 4.080559 4.011375 4.023977 3.863940
 [25] 4.047250 3.921947 4.049521 4.085961 3.853068 4.081517 3.987747 4.039110
 [33] 3.940955 3.954955 4.008512 3.942036 3.955110 3.968722 3.896042 3.979187
 [41] 3.957636 4.021170 4.107460 3.989197 3.931964 3.981774 4.125465 4.031625
 [49] 4.081076 3.939582 4.185512 3.997635 3.986411 3.817746 4.075256 4.074309
 [57] 4.136248 3.926092 3.976513 4.008376 3.984264 3.900717 4.138209 3.913901
 [65] 4.123326 3.894216 4.087260 4.145020 3.896286 4.142604 3.865085 4.014336
 [73] 4.053620 3.767552 3.981785 4.130483 4.165097 4.046661 4.077928 4.041611
 [81] 3.873046 4.100438 4.015098 3.947361 4.029464 4.123772 3.860191 3.820483
 [89] 4.071399 4.145585 3.982339 3.950332 3.987406 4.167345 4.126462 4.047683
 [97] 4.035958 3.987601 3.960099 3.869092
hist(x = mymeans,
     xlab = "Mean of samples",
     main = "100 cat weight samples (n = 30/sample)")
abline(v = mean(mymeans), col = "red", lty = 2, lwd = 2)


Notice a few things (NB your results might look slightly different to mine - remember these are random samples):

  • The samples vary around the true mean of 4.0 Kg

  • Most of the samples are pretty close to 4.0, fewer are farther away

  • The mean of the means is close to our true population mean

Try our simulation a few more times, but vary the settings. How does adjusting the sample size (say up to 100 or down to 10)? How about the number of samples (say up to 1000 or down to 10)?


3 Gaussian: That ain’t necessarily normal!

The Gaussian distribution is sometimes referred to as the Normal distribution. This is not a good practice: do not refer to the Gaussian distribution as the Normal distribution. Referring to the Gaussian distribution as the normal distribution implies that Gaussian is “typical”, which is patently untrue.

- The Comic Book Guy, The Simpsons


The Gaussian distribution is the classic “Bell curve” shaped distribution. It is probably the most important distribution to master, because of its importance in several ways:

  • We expect continuous numeric variables that “measure” things to be Gaussian (e.g., human height, lamb weight, songbird wing length, Nitrogen content in legumes, etc., etc.)

  • Example data: length of chicken beaks in mm

R output

# chicken beak lengths

 [1] 19.1 19.5 16.5 20.9 18.7 20.9 21.4 22.1 18.8 21.0 16.6 18.4 18.3 15.2 20.1 20.4
[17] 19.3 21.5 18.5 17.3


3.1 The Gaussian assumption (important topic)

  • For linear models like regression and ANOVA (we will review these models), we assume the residuals (the difference between each observation and the mean) to be Gaussian distributed and we often must test and evaluate this assumption

  • The Gaussian is described by 2 quantities: the mean and the variance

# Example data
(myvar <- c(1,4,8,3,5,3,8,4,5,6))
 [1] 1 4 8 3 5 3 8 4 5 6
# Mean the "hard" way
(myvar.mean <- sum(myvar)/length(myvar))
[1] 4.7
# Mean the easy way
mean(myvar)
[1] 4.7
# Variance the "hard" way 
# (NB this is the sample variance with [n-1])
(sum((myvar-myvar.mean)^2 / (length(myvar)-1)))
[1] 4.9
# Variance the easy way 
var(myvar)
[1] 4.9
# Std dev the easy way
sqrt(var(myvar))
[1] 2.213594


3.2 Gaussian histograms

We can describe the expected perfect (i.e., theoretical) Gaussian distribution based just on the mean and variance. The value of this mean and variance control the shape of the distribution.



3.3 More Gaussian fun

## Gaussian variations ####
# Try this:

# 4 means
(meanvec <- c(10, 7, 10, 10))
[1] 10  7 10 10
# 4 standard deviations
(sdvec <- c(2, 2, 1, 3))
[1] 2 2 1 3
# Make a baseline plot
x <- seq(0,20, by = .1)

# Probabilities for our first mean and sd
y1 <- dnorm(x = x, 
            mean = meanvec[1],
            sd = sdvec[1])

# Baseline plot of 1st mean and sd
plot(x = x, y = y1, ylim = c(0, .4),
     col = "goldenrod",
     lwd = 2, type = "l",
     main = "Gaussian fun 
     \n mean -> curve position; sd -> shape",
     ylab = "Density",
     xlab = "(Arbitrary) Measure")

# Make distribution lines
mycol <- c("red", "blue", "green")
for(i in 1:3){
  y <- dnorm(x = x, 
                mean = meanvec[i+1],
                sd = sdvec[i+1])
  lines(x = x, y = y, 
        col = mycol[i],
        lwd = 2, type = "l")
}

# Add a legend
legend(title = "mean (sd)",
       legend = c("10 (2)", "  7 (2)", 
                  "10 (1)", "10 (3)"),
       lty = c(1,1,1,1), lwd = 2,
       col = c("goldenrod", "red", "blue", "green"),
       x = 15, y = .35)


3.4 Quartile-Quartile (Q-Q) plots

It is very often that you might want a peek or even more formally test whether data are Gaussian. This might be in a situation when looking at, for example, the residuals for a linear model to test whether they adhere to the assumption of a Gaussian distribution. In that case, a common diagnostic graph to construct is the quantile-quantile, or “q-q”” Gaussian plot.

The q-q Gaussian plot your data again the theoretical expectation of the “quantile”, or percentile, were your data perfectly Gaussian (a straight, diagonal line). Remember, samples are not necessarily expected to perfectly conform to Gaussian (due to sampling error), even if the population from which the sample was taken were to be perfectly Gaussian. Thus, this is a way to confront your data with a model, to help be completely informed. The degree to which your data deviates from the line (especially systematic deviation at the ends of the line of expectation), is the degree to which is deviates from Gaussian.


## q-q- Gaussian ####

# Try This:

library(car) # Might need to install {car}
Loading required package: carData
# Set graph output to 2 x 2 grid
# (we will set it back to 1 x 1 later)
par(mfrow = c(2,2))  

# Small Gaussian sample
set.seed(42)
sm.samp <- rnorm(n = 10, 
                 mean = 10, sd = 2)

qqPlot(x = sm.samp, 
       dist = "norm", # C'mon guys, Gaussian ain't normal!
       main = "Small sample Gaussian")
[1] 9 2
# Large Gaussian sample
set.seed(42)
lg.samp <- rnorm(n = 1000, 
                 mean = 10, sd = 2)

qqPlot(x = lg.samp, 
       dist = "norm", 
       main = "Large sample Gaussian")
[1] 988 980
# Non- Gaussian sample
set.seed(42)
uni <- runif(n = 50, 
                 min = 3, max = 17)

qqPlot(x = uni, 
       dist = "norm", 
       main = "Big deviation at top")
[1] 35 37
par(mfrow = c(1,1)) # set graph grid back


4 Poisson distribution

Life is good for only two things, discovering mathematics and teaching mathematics.

- Simeon-Denis Poisson

The description of the Poisson distribution was credited to Simeon-Denis Poisson, a (very, very) passionate mathematician. The classic example for use is for count data, where famously it was exemplified by the number of Prussian soldiers who were killed by being kicked by a horse in a particular year.


4.1 The Poisson distribution

  • Count data of discrete events, objects, etc.

  • Integers, for example the number of beetles caught each day in a pitfall trap:

rpois(20, 4)
 [1] 3 3 3 5 1 5 5 2 3 4 5 9 5 4 6 2 3 6 5 3


  • Poisson data are typically skewed to the right

  • Described by a single parameter, \(\lambda\) (lambda), which describes the mean and the variance


The Poisson parameter:


4.2 Example Poisson data

# Try this:

# E.g. (simulated) Number of ewes giving birth to triplets
# The counts were made in one year 1n 100 similar flocks (<20 ewes each)

set.seed(42)
mypois <- rpois(n = 30, lambda = 3)

hist(mypois,
     main = "Ewes with triplets",
     xlab = "Count of Triplets")


4.3 Density plot for different Poisson lambda values

# Try this:
# 3 lambdas
(lambda <- c(1, 3, 5))
[1] 1 3 5
# Make a baseline plot
x <- seq(0, 15, by = 1)

# Probabilities for our first lambda
y1 <- dpois(x = x, 
            lambda = lambda[1])

# Baseline plot Pois
plot(x = x, y = y1, ylim = c(0, .4),
     col = "goldenrod",
     lwd = 2, type = "b",
     main = "Poisson fun",
     ylab = "Density",
     xlab = "(Arbitrary) Count")

# Make distribution lines
mycol <- c("red", "blue")
for(i in 1:2){
  y <- dpois(x = x, 
             lambda = lambda[i+1])
  lines(x = x, y = y, 
        col = mycol[i],
        lwd = 2, type = "b")
}

# Add a legend
legend(title = "lambda",
       legend = c("1", "3", "5"),
       lty = c(1,1,1,1), lwd = 2,
       col = c("goldenrod", "red", "blue"),
       x = 8, y = .35)


5 Binomial

When faced with 2 choices, simply toss a coin. It works not because it settles the question for you, but because in that brief moment when the coin is in the air you suddenly know what you are hoping for.

The Binomial distribution describes data that has exactly 2 outcomes: 0 and 1, Yes and No, True and False, etc. (you get the idea).

Examples of this kind of data include things like flipping a coin (heads or tails), successful germination of seeds (success or failure), or binary behavioral decisions (remain or disperse)


5.1 The Binomial distribution:

5.2 Ex 1 nest boxes

Let’s say you check 50 nest boxes, there is exactly 1 result per nest box (occupied or not), and the probability of occupancy is 30%.

# Try this:

# dormouse presence:
set.seed(42)
(my_occ <- rbinom(n = 50, # Number of "experiments", here nestboxes checked
       size = 1, # Number of checks, one check per nestbox
       prob = .3)) # Probability of presence
 [1] 1 1 0 1 0 0 1 0 0 1 0 1 1 0 0 1 1 0 0 0 1 0 1 1 0 0 0 1 0 1 1 1 0 0 0 1 0 0
[39] 1 0 0 0 0 1 0 1 1 0 1 0
mosaicplot(table(my_occ), col = c(2,'goldenrod'))


5.3 Ex 2 Flipping a coin: 20 people 10 times each

# Try this:
# Flip a fair coin:
set.seed(42)
(coin <- rbinom(n = 20, # Number of "experiments", 20 people flipping a coin
       size = 10, # Number of coin flips landing on "heads" out of 10 flips per person
       prob = .5)) # Probability of "heads"
 [1] 7 7 4 7 6 5 6 3 6 6 5 6 7 4 5 7 8 3 5 5
mosaicplot(table(coin), col = 1:unique(coin))
Warning in 1:unique(coin): numerical expression has 6 elements: only the first
used


Described by 2 parameters, The number of trials with a binary outcome in a single “experiment” (\(n\)), and the probability of success for each binary outcome (\(p\)).


The Binomial parameters:


5.4 Density plot for different Binomial parameters

# Try this:

# Binomial parameters
# 3 n of trial values
(n <- c(10, 10, 20))
[1] 10 10 20
# 3 probability values
(p <- c(.5, .8, .5))
[1] 0.5 0.8 0.5
# Make a baseline plot
x <- seq(0, 20, by = 1)

# Probabilities for our first set of parameters
y1 <- dbinom(x = x, 
            size = n[1],
            prob = p[1])

# Baseline plot Binom
plot(x = x, y = y1, ylim = c(0, .4),
     col = "goldenrod",
     lwd = 2, type = "b",
     main = "Binomial fun",
     ylab = "Density",
     xlab = "(Arbitrary) # \"Successes\"")

# Make distribution lines
mycol <- c("red", "blue")
for(i in 1:2){
  y <- dbinom(x = x, 
             size = n[i+1],
             prob = p[i+1])
  lines(x = x, y = y, 
        col = mycol[i],
        lwd = 2, type = "b")
}

# Add a legend
legend(title = "Parameters",
       legend = c("n = 10, p = 0.50", 
                  "n = 10, p = 0.80",
                  "n = 20, p = 0.50"),
       lty = c(1,1,1,1), lwd = 2, bty='n',
       col = c("goldenrod", "red", "blue"),
       x = 11, y = .35)


6 Diagnosing the distribution

A very common task faced when handling data is “diagnosing the distribution”. Just like a human doctor diagnosing an ailment, you examine the evidence, consider the alternatives, judge the context, and take an educated guess.

There are statistical tests to compare data to a theoretical model, and they can be useful, but diagnosing a statistical distribution is principally a subjective endeavor. A common situation would be to examine the residual distribution for a regression model compared to the expected Gaussian distribution. Good practice is to have a set of steps to adhere to when diagnosing a distribution.

  • First, develop an expectation of the distribution, based on the type of data

  • Second graph the data, almost always with a histogram, and a q-q plot with a theoretical quartile line for comparison

  • Third, compare q-q plots with different distributions for comparison if in doubt, and if it makes sense to do so!

  • If the assumption of a particular distribution is important (like Gaussian residuals), try transformation and compare, e.g., log(your-data), cuberoot(your-data), or others, to the Gaussian q-q expectation.


It is beyond the intention of this page to examine all the possibilities of examining and diagnosing data distributions, but instead the intention is to alert readers that this topic is wide and deep. Here are a few good resources that can take you farther:

Vitto Ricci, Fitting distributions with R

Bill Huber, Fitting distributions to data Quick-R, Probability plots


7 Practice exercises

For the following exercises, run the code below to create the data oibject dat.

# The code below loads and prints the data frame "dat"

# Data dictionary for "dat", a dataset with different measures of 20 sheep
# weight - weight in Kg
# ked - count of wingless flies
# trough - 2 feed troughs, proportion of times "Trough A" fed from
# shear - minutes taken to "hand shear" each sheep

(dat <- data.frame(
  weight = c(44.1, 38.3, 41.1, 41.9, 41.2, 39.7, 44.5, 39.7, 46.1, 39.8, 
    43.9, 46.9, 35.8, 39.2, 39.6, 41.9, 39.1, 32.0, 32.7, 44.0),
  
  ked = c(9, 4, 15, 11, 10, 8, 12, 12, 6, 11,
             12, 13, 8, 11, 19, 19, 12, 7, 8, 14),
  
  trough = c(0.52, 0.74, 0.62, 0.63, 0.22, 0.22, 0.39, 0.94, 0.96, 0.74,
              0.73, 0.54, 0.00, 0.61, 0.84, 0.75, 0.45, 0.54, 0.54, 0.00),
  
  shear = c(14.0, 8.0, 14.0, 11.0, 14.0, 5.0, 9.5, 11.0, 6.5, 11.0, 
            18.5, 11.0, 18.5, 8.0, 8.0, 6.5, 18.5, 15.5, 14.0, 8.0)
  ))


7.1

Do you expect weight to be Gaussian distributed? How about ked? Explain your answer for each.

7.2

Show the code to graphically diagnose and decide whether weight is Gaussian and explain your conclusion.


7.3

Show the code to graphically diagnose and decide whether ked is Gaussian and explain your conclusion. If you choose another likely distribution, test it as well and similarly diagnose.


7.4

Explore whether trough is Gaussian, and explain whether you expect it to be so. If not, does transforming the data “persuade it” to conform to Gaussian? Discuss.


7.5

Write a plausible practice question involving any aspect of graphical diagnosis of a data distribution using the iris data.


Harper Adams Data Science

Harper Data Science

This website supports students and staff at Harper Adams University and the MSc in Data Science for Global Agriculture, Food, and Environment led by Ed Harris.