The Big Mac Index - Testing the theory of Purchasing Power Parity

Hannah Borash

05/06/17

Introduction

Problem Statement

Data

Data Cont.

The variables used in analysis are as follows, paired by country: - Foreign Exchange Rate (USD/AUD) - United States of America - Big Mac Index (USD/AUD) - United States of America - Foreign Exchange Rate (YUAN/AUD) - China - Big Mac Index (YUAN/AUD) - China - Foreign Exchange Rate (GBP/AUD) - United Kingdom - Big Mac Index (GBP/AUD) - United Kingdom - Foreign Exchange Rate (NZD/AUD) - New Zealand - Big Mac Index (NZD/AUD) - New Zealand These are all scaled by the foreign country over the Australian Dollar

Descriptive Statistics and Visualisation - Big Mac Index (United States of America)

Summary Statistics of the Difference
Min Q1 Median Q3 Max Mean SD n Missing
-0.0282234 0.0718765 0.1217138 0.1676311 0.2434887 0.1127933 0.06783 859 0

Descriptive Statistics and Visualisation - Big Mac Index (China)

Summary Statistics of the Difference
Min Q1 Median Q3 Max Mean SD n Missing
-2.589671 -2.058489 -1.826417 -1.502963 -1.121874 -1.8207 0.3793413 859 0

Descriptive Statistics and Visualisation - Big Mac Index (United Kingdom)

Summary Statistics of the Difference
Min Q1 Median Q3 Max Mean SD n Missing
-0.1117 -0.0434207 0.0155752 0.0404748 0.092083 0.0051254 0.0516525 859 0

Descriptive Statistics and Visualisation - Big Mac Index (New Zealand)

Summary Statistics of the Difference
Min Q1 Median Q3 Max Mean SD n Missing
-0.0646172 -0.0068571 0.0097075 0.0370075 0.1068075 0.0142447 0.0331498 859 0

Hypothesis Testing

Hypothesis Testing - Big Mac Index (United States of America)

Using the Quantile-Quantile Plot to check the normality of the difference, we can see that there are significant outliers from the normal distribution, so we cannot make inferences from the paired hypothesis test.

## 
##  Paired t-test
## 
## data:  BigMacIndex$`PPPAU/US` and BigMacIndex$FXRUSD
## t = 48.737, df = 858, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  0.1082509 0.1173357
## sample estimates:
## mean of the differences 
##               0.1127933

Hypothesis Testing - Big Mac Index (China)

Using the Quantile-Quantile Plot to check the normality of the difference, there are outliers at the tails, however for the most part the distribution appears to follow the normal distribution. The paired sample t-test shows a significant mean difference between the exchange rate and index, t(df=858)=-140.67, p-value < 0.05. As the 95% confidence interval [-1.846,-1.795] does not contain zero, we are able to reject the null hypothesis.

## 
##  Paired t-test
## 
## data:  BigMacIndex$`PPPAU/CH` and BigMacIndex$FXRCR
## t = -140.67, df = 858, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  -1.846104 -1.795297
## sample estimates:
## mean of the differences 
##                 -1.8207

Hypothesis Testing - Big Mac Index (United Kingdom)

As the paired sample test relies on the assumption of normality and there is many observations that are outliers, we are not same to take inferences from this test.

## 
##  Paired t-test
## 
## data:  BigMacIndex$`PPPAU/UK` and BigMacIndex$FXRUKPS
## t = 2.9083, df = 858, p-value = 0.003728
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  0.001666402 0.008584493
## sample estimates:
## mean of the differences 
##             0.005125447

Hypothesis Testing - Big Mac Index (New Zealand)

Testing for a significant difference between the exchange rate and index for purchasing power parity, visually the quantile-quantile plot shows that observations appear to be normally distributed. The paired sample t-test shows a significant mean difference between the exchange rate and index, t(df=858) =12.594, p-value < 0.05. As the 95% confidence interval [0.012,0.016] does not contain zero, we can reject the null hypothesis.

## 
##  Paired t-test
## 
## data:  BigMacIndex$`PPPAU/NZ` and BigMacIndex$FXRNZD
## t = 12.594, df = 858, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  0.01202473 0.01646465
## sample estimates:
## mean of the differences 
##              0.01424469

Discussion

Discussion Continued…

References