Correlation analysis is conducted to examine the relationship between dependent and independent variables. There are two types of correlation analysis in STATA.
- Pairwise correlation treats each pair of variables separately and only includes observations that have valid values for each pair in the data set.
- The second type of correlation is the normal correlation which takes the entire data set as one and calculates the correlation for all valid values.
In other words, in pairwise correlation, the linear relationship between the variables is computed. However, the only difference is in the way missing values are handled. In the case of Pairwise correlation, a pair of data of points are deleted from the computation in case one or both the data points are missing in the dataset. In case the varlist is not defined then the matrix is displayed for all the variables in the dataset.
Doing correlation analysis using the dropdown list
Correlation
Statistics > Summaries, tables, and tests > Summary and Descriptive Tests > Correlations and covariances
Pairwise Correlation
Statistics > Summaries, tables, and tests > Summary and Descriptive Tests > Pairwise Correlation
In order to improve the viability of results, pairwise correlation is done in this article with an example. From the drop-down button, select the variables that you need to correlate.
Using the graphical user interface, the commands which have been discussed above can be carried out by selecting the variables. Next check the boxes titled:
- Print Number of observations for each entry.
- Print significance level for each entry.
- The significance level for displaying with a star.
See the image below:
Commands used for pairwise correlation
The basic code for pairwise Correlation is:
pwcorr VariableA VariableB
In case one wants STATA to produce a p-value (statistically significance level), one needs to add sig, at the end of the command like shown below:
pwcorr VariableA VariableB, sig
In case the researcher wants to determine if the results are significant at a specific confidence interval (ex: p < .05 or .01), then the command is preceded by sig star (.05 or .01)
pwcorr VariableA VariableB, sig star (.05)
In case the researcher wants to observe the number of observations (N or sample size) i.e. obs, then the command is:
pwcorr VariableA VariableB, sig star(.05) obs
Output for pairwise correlation in STATA
The pairwise correlation was done between price, mileage (mpg), repair record 1978 (rep78) and headroom. The table below reflects the Pearson coefficient value for each variable, the significance value and the sample size in the data set (variable, as in case of rep78 it is 69 and for rest, it is 74).
pwcorr price mpg rep78 headroom, obs sig star(5) | ||||
price | mpg | rep78 | headroom | |
price | 1.0000 | |||
74 | ||||
mpg | -0.4686* | 1.0000 | ||
0.0000 | ||||
74 | 74 | |||
rep78 | 0.0066 | 0.4023* | 1.0000 | |
0.9574 | 0.0006 | |||
69 | 69 | 69 | ||
headroom | 0.1145 | -0.4138* | -0.1480 | 1.0000 |
0.3313 | 0.0002 | 0.2249 | ||
74 | 74 | 69 | 74 |
The output reflects that there is a negative correlation between mpg and the price of the car which is significant at a 5% significance level. Similarly, a negative correlation exists between headroom and mpg. Further, the positive correlation between rep78 and mpg.