|
1.
Exploratory Data Analysis
1.3. EDA Techniques 1.3.3. Graphical Techniques: Alphabetic
|
|||
|
Purpose: Check if two data sets come from a common distribution |
The quantile-quantile (q-q) plot is a graphical technique for
determining if two data sets come from a common distribution.
A q-q plot is a plot of the quantiles of the first data set against the quantiles of the second distribution. By a quantile, we mean the fraction (or percent) of points below the given quantile. That is, the 0.3 (or 30%) quantile is the point at which 30% percent of the data fall below and 70% fall above that value. A 45 degree reference line is also plotted. If the two sets come from the same distribution, the points should fall along this reference line. The greater the departures from this reference line, the greater the evidence for the conclusion that the two data sets come from different distributions. The advantages of the q-q plot are:
The q-q plot is similar to a probability plot. For a probability plot, the quantiles for one of the data samples are replaced with the quantiles of a theoretical distribution. |
||
| Sample Plot |
This q-q plot shows that
|
||
|
Definition: Quantiles for data set 1 versus quantiles of data set 2 |
The q-q plot is formed by:
Both axes are in units of their respective data sets. That is, the actual quantile level is not plotted. For a given point on the q-q plot, we know that the quantile level is the same for both points, but not what that quantile level actually is. If the data sets have the same size, the q-q plot is essentially a plot of the sorted data set 1 against the sorted data set 2. If the data sets are not of equal size, the quantiles are usually picked to correspond to the sorted values from the smaller data set and then the quantiles for the larger data set are interpolated.
|
||
| Questions |
The q-q plot is used to answer the following questions:
|
||
| Importance: Check for common distribution | When there are two data samples, it is often desirable to know if the assumption of a common distribution is justified. If so, then location and scale estimators can pool both data sets to obtain single common estimates. If two samples do differ, it is also useful to gain some understanding of the differences. The q-q plot can provide more insight into the nature of the difference better than analytical methods such as the chi-square or Kolmogorov 2-sample tests. | ||
| Related Techniques |
Bi-Histogram T Test F Test 2-Sample Chi-Square Test 2-Sample Kolmogorov-Smirnov Test |
||
| Case Study | The quantile-quantile plot is demonstrated in the ceramic strength data case study. | ||
| Software | Q-Q plots are available is some general purpose statistical software programs, including Dataplot. If the number of data points in the two samples are equal, it should be relatively easy to write a macro in statistical programs that do not support the q-q plot. If the number of points are not equal, writing a macro for a q-q plot may be difficult. | ||