In this lab we’ll investigate the probability distribution that is most central to statistics: the normal distribution. If we are confident that our data are nearly normal, that opens the door to many powerful statistical methods. Here we’ll use the graphical tools of Stata to assess the normality of our data and also learn how to generate random numbers from a normal distribution.

The Data

This week we’ll be working with measurements of body dimensions from the dataset bdims.dta. Read your dataset into Stata using the methods described in the “Introduction to Stata” lab.

Once you have read in your dataset, open up the Data Browser in Stata to view the data. This data set contains measurements from 247 men and 260 women, most of whom were considered healthy young adults.

You’ll see that for every observation we have 25 measurements, many of which are either diameters or girths. We’ll be focusing on just three columns to get started: weight in kg (wgt), height in cm (hgt), and sex (1 indicates female, 2 indicates male).

  1. Make a plot (or plots) to visualize the distributions of men’s and women’s heights.
    How do their centers, shapes, and spreads compare?

The normal distribution

In your description of the distributions, did you use words like bell-shaped or normal? It’s tempting to say so when faced with a unimodal symmetric distribution.

To see how accurate that description is, we can plot a normal distribution curve on top of a histogram to see how closely the data follow a normal distribution. This normal curve should have the same mean and standard deviation as the data. We’ll be working with women’s heights, so let’s subset our data using the command keep. We can always use the command use "bdims.dta" to go back to the original dataset of both females and males.

keep if sex == 1
 . keep if sex == 1
(247 observations deleted)

Recall that we can display a histogram of the heights of females using the histogram command:

histogram hgt

Instead of plotting a frequency histogram, the default in Stata, we can plot a density histogram:

histogram hgt, density

The difference between a frequency histogram and a density histogram is that while in a frequency histogram the heights of the bars add up to the total number of observations, in a density histogram the areas of the bars add up to 1. The area of each bar can be calculated as its height times the width of the bar. Using a density histogram allows us to properly overlay a normal distribution curve over the histogram since the curve is a normal probability density function that also has area under the curve of 1. Frequency and density histograms both display the same exact shape; they only differ in their y-axis. You can verify this by comparing the frequency histogram and the density histogram.

We can add a normal curve to this histogram by using the option normal.

histogram hgt, normal density
  1. Based on this plot, does it appear that the data follow a nearly normal distribution?

Evaluating the normal distribution

Eyeballing the shape of the histogram is one way to determine if the data appear to be nearly normally distributed, but it can be frustrating to decide just how close the histogram is to the curve. An alternative approach involves constructing a normal probability plot, also called a normal Q-Q plot for “quantile-quantile”.

qnorm hgt

The x-axis values correspond to the quantiles of a theoretically normal curve with mean and standard deviation equal to the sample mean and standard deviation from the data. The y-axis values correspond to the quantiles of the sample data. A data set that is nearly normal will result in a probability plot where the points closely follow a diagonal line. Any deviations from normality leads to deviations of these points from that line.

The plot for female heights shows points that tend to follow the line but with some errant points towards the tails. We’re left with the same problem that we encountered with the histogram above: how close is close enough?

A useful way to address this question is to rephrase it as: what do probability plots look like for data that I know came from a normal distribution? We can answer this by simulating data from a normal distribution. First, we need to find the mean and standard deviation of our heights:

summarize hgt

Then, using this mean and standard deviation, we can simulate normal data into a new variable called simnorm using the function rnormal.

generate simnorm = rnormal(164.9, 6.5)

We can take a look at the shape of our simulated data as well as its normal probability plot.

  1. Make a normal probability plot of simnorm. Do all of the points fall on the line? How does this plot compare to the probability plot for the real data?

  2. Does the normal probability plot for female heights look similar to the plots created for the simulated data? That is, do the plots provide evidence that the female heights are nearly normal?
  3. Using the same technique, determine whether or not female weights appear to come from a normal distribution.

Normal probabilities

Okay, so now you have a slew of tools to judge whether or not a variable is normally distributed. Why should we care?

It turns out that statisticians know a lot about the normal distribution. Once we decide that a random variable is approximately normal, we can answer all sorts of questions about that variable related to probability. Take, for example, the question of, “What is the probability that a randomly chosen young adult female is taller than 6 feet (about 182 cm)?” (The study that published this data set is clear to point out that the sample was not random and therefore inference to a general population is not suggested. We do so here only as an exercise.)

If we assume that female heights are normally distributed (a very close approximation is also okay), we can find this probability by calculating a Z-score and consulting a Z table (also called a normal probability table). In Stata, this is done in two steps. First, we compute the Z-score in the same way discussed in the textbook, using Stata as a calculator.

display (182 - 164.9) / 6.5
 . display (182 - 164.9) / 6.5
2.6307692

Then, with the function normal(), we can find the left-tail probability, which corresponds to an adult female being smaller than 182 cm:

display normal(2.63)
 . display normal(2.63)
.99573076

. 

If we want the right-tail probability for an adult female being taller than 182 cm, we take:

display 1 - normal(2.63)
 . display 1 - normal(2.63)
.00426924

Assuming a normal distribution has allowed us to calculate a theoretical probability. If we want to calculate the probability empirically, we simply need to determine how many observations fall above 182 then divide this number by the total number of females in the sample.

count if hgt > 182

Although the probabilities are not exactly the same, they are reasonably close. The closer that your distribution is to being normal, the more accurate the theoretical probabilities will be.

  1. Write out two probability questions that you would like to answer; one regarding female heights and one regarding female weights. Calculate those probabilities using both the theoretical normal distribution as well as the empirical distribution (four probabilities in all). Which variable, height or weight, had a closer agreement between the two methods?

More Practice

  1. Now let’s consider some of the other variables in the body dimensions data set. Using the figures at the end of the exercises, match the histogram to its normal probability plot. All of the variables have been standardized (first subtract the mean, then divide by the standard deviation), so the units won’t be of any help. If you are uncertain based on these figures, generate the plots in Stata to check.

a. The histogram for female biiliac (pelvic) diameter (bii_di) belongs to normal probability plot letter ____.

b. The histogram for female elbow diameter (elb_di) belongs to normal probability plot letter ____.

c. The histogram for general age (age) belongs to normal probability plot letter ____.

d. The histogram for female chest depth (che_de) belongs to normal probability plot letter ____.

  1. Note that normal probability plots c. and d. have a slight stepwise pattern. Why do you think this is the case?

  2. As you can see, normal probability plots can be used both to assess normality and visualize skewness. Make a normal probability plot for female knee diameter (kne_di). Based on this normal probability plot, is this variable left skewed, symmetric, or right skewed? Use a histogram to confirm your findings.

This is a product of OpenIntro that is released under a Creative Commons Attribution-ShareAlike 3.0 Unported. This lab was adapted for Stata by Jenna R. Krall and John Muschelli and adapted for OpenIntro by Andrew Bray and Mine Çetinkaya-Rundel from a lab written by Mark Hansen of UCLA Statistics.