In this set we will build and explore a data set using filters and if and diff statements. We will then answer some questions using plots and a pivot table report. We will then review a function to house our approach in case we would like to run some of the same analysis on other data sets.
Marketing and accounts receivables managers at our company continue to note we have a significant exposure to exchange rates. Our functional currency (what we report in financial statements) is in U.S. dollars (USD).
Our customer base is located in the United Kingdom, across the European Union, and in Japan. The exposure hits the gross revenue line of our financials.
Cash flow is further affected by the ebb and flow of accounts receivable components of working capital in producing and selling several products. When exchange rates are volatile, so is earnings, and more importantly, our cash flow.
Our company has also missed earnings forecasts for five straight quarters.
To get a handle on exchange rate exposures we download this data set and review some basic aspects of the exchange rates.
# Read in data
library(zoo)
##
## Attaching package: 'zoo'
## The following objects are masked from 'package:base':
##
## as.Date, as.Date.numeric
library(xts)
library(ggplot2)
# Read and review a csv file from FRED
exrates <- na.omit(read.csv("data/exrates.csv", header = TRUE))
# Check the data
head(exrates)
tail(exrates)
str(exrates)
## 'data.frame': 260 obs. of 5 variables:
## $ DATE : Factor w/ 260 levels "1/1/2017","1/10/2016",..: 15 103 89 94 100 126 109 114 120 130 ...
## $ USD.EUR: num 0.764 0.761 0.757 0.761 0.75 ...
## $ USD.GBP: num 0.639 0.634 0.633 0.634 0.633 ...
## $ USD.CNY: num 6.3 6.29 6.29 6.3 6.3 ...
## $ USD.JPY: num 77.2 76.4 77.2 78.7 80.3 ...
summary(exrates)
## DATE USD.EUR USD.GBP USD.CNY
## 1/1/2017 : 1 Min. :0.7199 Min. :0.5835 Min. :6.092
## 1/10/2016: 1 1st Qu.:0.7544 1st Qu.:0.6224 1st Qu.:6.149
## 1/11/2015: 1 Median :0.7926 Median :0.6418 Median :6.279
## 1/12/2014: 1 Mean :0.8196 Mean :0.6561 Mean :6.310
## 1/13/2013: 1 3rd Qu.:0.8932 3rd Qu.:0.6656 3rd Qu.:6.369
## 1/15/2017: 1 Max. :0.9583 Max. :0.8209 Max. :6.949
## (Other) :254
## USD.JPY
## Min. : 76.39
## 1st Qu.: 96.90
## Median :102.44
## Mean :103.05
## 3rd Qu.:117.19
## Max. :124.78
##
We will calculate percentage changes as log returns of currency pairs. Our interest is in the ups and downs. To look at that we use if and else statements to define a new column called direction. We will build a data frame to house this initial analysis.
Using this data frame, interpret appreciation and depreciation in terms of the impact on the receipt of cash flow from customer’s accounts that are denominated in other than our USD functional currency.
It looks like the most stable in terms of the impact on the receipt of cash flow from customer's accounts is the CNY, except for around 2015 when it appreciated and at the same time the JPY depreciated. Both ERU and GBP seem equally volatile and possibly correlated.
# Compute log differences percent using as.matrix to force numeric type
exrates.r <- diff(log(as.matrix(exrates[, -1]))) * 100
head(exrates.r)
## USD.EUR USD.GBP USD.CNY USD.JPY
## 2 -0.39282058 -0.8523826 -0.01270912 -1.0301113
## 3 -0.42063724 -0.1184583 -0.03130311 1.0571858
## 4 0.44758304 0.2221127 0.06545522 1.9318720
## 5 -1.40130272 -0.2407629 0.01048156 2.0452375
## 6 0.02305476 -0.4546859 0.02588158 1.0197119
## 7 1.19869144 0.7988383 0.22598055 0.6384155
tail(exrates.r)
## USD.EUR USD.GBP USD.CNY USD.JPY
## 255 -0.1234763 -0.4555311 0.602265010 0.9803397
## 256 1.2285861 0.6319419 -0.014283828 2.0753968
## 257 0.8183343 1.7310378 0.268885929 0.5745646
## 258 -0.4414460 0.3833571 0.003021937 -0.3146198
## 259 -0.2701570 -0.1483412 -0.303945688 -0.1127877
## 260 -0.8592840 1.0367203 -0.150079365 -1.4475722
str(exrates.r)
## num [1:259, 1:4] -0.3928 -0.4206 0.4476 -1.4013 0.0231 ...
## - attr(*, "dimnames")=List of 2
## ..$ : chr [1:259] "2" "3" "4" "5" ...
## ..$ : chr [1:4] "USD.EUR" "USD.GBP" "USD.CNY" "USD.JPY"
# Create size and direction
size <- na.omit(abs(exrates.r)) # size is indicator of volatility
head(size)
## USD.EUR USD.GBP USD.CNY USD.JPY
## 2 0.39282058 0.8523826 0.01270912 1.0301113
## 3 0.42063724 0.1184583 0.03130311 1.0571858
## 4 0.44758304 0.2221127 0.06545522 1.9318720
## 5 1.40130272 0.2407629 0.01048156 2.0452375
## 6 0.02305476 0.4546859 0.02588158 1.0197119
## 7 1.19869144 0.7988383 0.22598055 0.6384155
# colnames(size) <- paste(colnames(size),".size", sep = "") # Teetor
direction <- ifelse(exrates.r > 0, 1, ifelse(exrates.r < 0, -1, 0)) # another indicator of volatility
# colnames(direction) <- paste(colnames(direction),".dir", sep = "")
head(direction)
## USD.EUR USD.GBP USD.CNY USD.JPY
## 2 -1 -1 -1 -1
## 3 -1 -1 -1 1
## 4 1 1 1 1
## 5 -1 -1 1 1
## 6 1 -1 1 1
## 7 1 1 1 1
# Convert into a time series object:
# 1. Split into date and rates
dates <- as.Date(exrates$DATE[-1], "%m/%d/%Y")
values <- cbind(exrates.r, size, direction)
# for dplyr pivoting we need a data frame
exrates.df <- data.frame(dates = dates, returns = exrates.r, size = size, direction = direction)
str(exrates.df) # notice the returns.* and direction.* prefixes
## 'data.frame': 259 obs. of 13 variables:
## $ dates : Date, format: "2012-02-05" "2012-02-12" ...
## $ returns.USD.EUR : num -0.3928 -0.4206 0.4476 -1.4013 0.0231 ...
## $ returns.USD.GBP : num -0.852 -0.118 0.222 -0.241 -0.455 ...
## $ returns.USD.CNY : num -0.0127 -0.0313 0.0655 0.0105 0.0259 ...
## $ returns.USD.JPY : num -1.03 1.06 1.93 2.05 1.02 ...
## $ size.USD.EUR : num 0.3928 0.4206 0.4476 1.4013 0.0231 ...
## $ size.USD.GBP : num 0.852 0.118 0.222 0.241 0.455 ...
## $ size.USD.CNY : num 0.0127 0.0313 0.0655 0.0105 0.0259 ...
## $ size.USD.JPY : num 1.03 1.06 1.93 2.05 1.02 ...
## $ direction.USD.EUR: num -1 -1 1 -1 1 1 1 -1 -1 1 ...
## $ direction.USD.GBP: num -1 -1 1 -1 -1 1 1 -1 -1 1 ...
## $ direction.USD.CNY: num -1 -1 1 1 1 1 1 -1 -1 -1 ...
## $ direction.USD.JPY: num -1 1 1 1 1 1 1 -1 -1 -1 ...
# 2. Make an xts object with row names equal to the dates
exrates.xts <- na.omit(as.xts(values, dates)) #order.by=as.Date(dates, "%d/%m/%Y")))
str(exrates.xts)
## An 'xts' object on 2012-02-05/2017-01-15 containing:
## Data: num [1:259, 1:12] -0.3928 -0.4206 0.4476 -1.4013 0.0231 ...
## - attr(*, "dimnames")=List of 2
## ..$ : NULL
## ..$ : chr [1:12] "USD.EUR" "USD.GBP" "USD.CNY" "USD.JPY" ...
## Indexed by objects of class: [Date] TZ: UTC
## xts Attributes:
## NULL
exrates.zr <- na.omit(as.zooreg(exrates.xts))
str(exrates.zr)
## 'zooreg' series from 2012-02-05 to 2017-01-15
## Data: num [1:259, 1:12] -0.3928 -0.4206 0.4476 -1.4013 0.0231 ...
## - attr(*, "dimnames")=List of 2
## ..$ : NULL
## ..$ : chr [1:12] "USD.EUR" "USD.GBP" "USD.CNY" "USD.JPY" ...
## Index: Date[1:259], format: "2012-02-05" "2012-02-12" "2012-02-19" "2012-02-26" "2012-03-04" ...
## Frequency: 0.142857142857143
head(exrates.xts)
## USD.EUR USD.GBP USD.CNY USD.JPY USD.EUR
## 2012-02-05 -0.39282058 -0.8523826 -0.01270912 -1.0301113 0.39282058
## 2012-02-12 -0.42063724 -0.1184583 -0.03130311 1.0571858 0.42063724
## 2012-02-19 0.44758304 0.2221127 0.06545522 1.9318720 0.44758304
## 2012-02-26 -1.40130272 -0.2407629 0.01048156 2.0452375 1.40130272
## 2012-03-04 0.02305476 -0.4546859 0.02588158 1.0197119 0.02305476
## 2012-03-11 1.19869144 0.7988383 0.22598055 0.6384155 1.19869144
## USD.GBP USD.CNY USD.JPY USD.EUR USD.GBP USD.CNY USD.JPY
## 2012-02-05 0.8523826 0.01270912 1.0301113 -1 -1 -1 -1
## 2012-02-12 0.1184583 0.03130311 1.0571858 -1 -1 -1 1
## 2012-02-19 0.2221127 0.06545522 1.9318720 1 1 1 1
## 2012-02-26 0.2407629 0.01048156 2.0452375 -1 -1 1 1
## 2012-03-04 0.4546859 0.02588158 1.0197119 1 -1 1 1
## 2012-03-11 0.7988383 0.22598055 0.6384155 1 1 1 1
We can plot with the ggplot2 package. In the ggplot statements we use aes, “aesthetics”, to pick x (horizontal) and y (vertical) axes. Use group =1 to ensure that all data is plotted. The added (+) geom_line is the geometrical method that builds the line plot.
library(ggplot2)
library(plotly)
##
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
##
## last_plot
## The following object is masked from 'package:stats':
##
## filter
## The following object is masked from 'package:graphics':
##
## layout
title.chg <- "Exchange Rate Percent Changes"
p1 <- autoplot.zoo(exrates.xts[,1:4]) + ggtitle(title.chg) + ylim(-5, 5)
p2 <- autoplot.zoo(exrates.xts[,5:8]) + ggtitle(title.chg) + ylim(-5, 5)
ggplotly(p1)
acf(coredata(exrates.xts[ , 1:4])) #returns
acf(coredata(exrates.xts[ , 5:8])) #sizes
pacf(coredata(exrates.xts[ , 1:4])) #returns
pacf(coredata(exrates.xts[ , 5:8])) #sizes
# Load the data_moments() function
## data_moments function
## INPUTS: r vector
## OUTPUTS: list of scalars (mean, sd, median, skewness, kurtosis)
data_moments <- function(data){
library(moments)
library(matrixStats)
mean.r <- colMeans(data)
median.r <- colMedians(data)
sd.r <- colSds(data)
IQR.r <- colIQRs(data)
skewness.r <- skewness(data)
kurtosis.r <- kurtosis(data)
result <- data.frame(mean = mean.r, median = median.r, std_dev = sd.r, IQR = IQR.r, skewness = skewness.r, kurtosis = kurtosis.r)
return(result)
}
# Run data_moments()
answer <- data_moments(exrates.xts[, 5:8])
# Build pretty table
answer <- round(answer, 4)
knitr::kable(answer)
| mean | median | std_dev | IQR | skewness | kurtosis | |
|---|---|---|---|---|---|---|
| USD.EUR | 0.7185 | 0.5895 | 0.5499 | 0.7506 | 1.3773 | 6.3808 |
| USD.GBP | 0.6884 | 0.5601 | 0.6565 | 0.6588 | 4.0555 | 34.3779 |
| USD.CNY | 0.1700 | 0.1118 | 0.2233 | 0.1536 | 4.9157 | 41.4959 |
| USD.JPY | 0.8310 | 0.6358 | 0.7371 | 0.8352 | 1.6373 | 6.3185 |
mean(exrates.xts[,4])
## [1] 0.154916
We will use the data from the first par to investigate the interactions of the distribution of exchange rates.
We want to characterize the distribution of up and down movements visually. Also we would like to repeat the analysis periodically for inclusion in management reports.
Since corporate set the policy for tolerance at 95%, the tolerance rate is 1.47%, as shown in the graph.
exrates.tol.pct <- 0.95
exrates.tol <- quantile(exrates.df$returns.USD.EUR, exrates.tol.pct)
exrates.tol.label <- paste("Tolerable Rate = ", round(exrates.tol, 2), "%", sep = "")
p <- ggplot(exrates.df, aes(returns.USD.EUR, fill = direction.USD.EUR)) + stat_ecdf(colour = "blue", size = 0.75, geom = "point") + geom_vline(xintercept = exrates.tol, colour = "red", size = 1.5) + annotate("text", x = exrates.tol + 1 , y = 0.75, label = exrates.tol.label, colour = "darkred")
ggplotly(p)
As depicted from the graph, there is a definite history of correlations in the exchange rate markets of GBP and EUR. more often than not, there is a strong positive correlation. This confirms the first analysis that GBP and EUR are correlated and definitely requires management of risk for conducting business in both countires.
one <- ts(exrates.df$returns.USD.EUR)
two <- ts(exrates.df$returns.USD.GBP)
# or
one <- ts(exrates.zr[,1])
two <- ts(exrates.zr[,2])
ccf(abs(one), abs(two), main = "GBP vs. EUR", lag.max = 20, xlab = "", ylab = "", ci.col = "red")
# build function to repeat these routines
run_ccf <- function(one, two, main = "one vs. two", lag = 20, color = "red"){
# one and two are equal length series
# main is title
# lag is number of lags in cross-correlation
# color is color of dashed confidence interval bounds
stopifnot(length(one) == length(two))
one <- ts(one)
two <- ts(two)
main <- main
lag <- lag
color <- color
ccf(one, two, main = main, lag.max = lag, xlab = "", ylab = "", ci.col = color)
#end run_ccf
}
one <- ts(exrates.df$returns.USD.EUR)
two <- ts(exrates.df$returns.USD.GBP)
# or
one <- exrates.zr[,1]
two <- exrates.zr[,2]
title <- "EUR vs. GBP"
run_ccf(abs(one), abs(two), main = title, lag = 20, color = "red")
# now for volatility (sizes)
one <- ts(abs(exrates.zr[,1]))
two <- ts(abs(exrates.zr[,2]))
title <- "EUR vs. GBP: volatility"
run_ccf(one, two, main = title, lag = 20, color = "red")
#We see some small raw correlations across time with raw returns. More revealing, we see volatility of correlation clustering using return sizes.
One more experiment, rolling correlations and volatilities using these functions:
corr_rolling <- function(x) {
dim <- ncol(x)
corr_r <- cor(x)[lower.tri(diag(dim), diag = FALSE)]
return(corr_r)
}
vol_rolling <- function(x){
library(matrixStats)
vol_r <- colSds(x)
return(vol_r)
}
ALL.r <- exrates.xts[, 1:4]
window <- 90 #reactive({input$window})
corr_r <- rollapply(ALL.r, width = window, corr_rolling, align = "right", by.column = FALSE)
colnames(corr_r) <- c("EUR.GBP", "EUR.CNY", "EUR.JPY", "GBP.CNY", "GBP.JPY", "CNY.JPY")
vol_r <- rollapply(ALL.r, width = window, vol_rolling, align = "right", by.column = FALSE)
colnames(vol_r) <- c("EUR.vol", "GBP.vol", "CNY.vol", "JPY.vol")
year <- format(index(corr_r), "%Y")
r_corr_vol <- merge(ALL.r, corr_r, vol_r, year)
The data and graphs prove correlations and volatilities depend on one another. The relationship is strong and confirms that we have to be concerned that inter-market transitions can affect transactions in a single market.
library(quantreg)
## Loading required package: SparseM
##
## Attaching package: 'SparseM'
## The following object is masked from 'package:base':
##
## backsolve
taus <- seq(.05,.95, .05) # Roger Koenker UIC Bob Hogg and Allen Craig
fit.rq.CNY.JPY <- rq(log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
## Warning in log(CNY.JPY): NaNs produced
fit.lm.CNY.JPY <- lm(log(CNY.JPY) ~ log(JPY.vol), data = r_corr_vol)
## Warning in log(CNY.JPY): NaNs produced
# Some test statements
CNY.JPY.summary <- summary(fit.rq.CNY.JPY, se = "boot")
CNY.JPY.summary
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.05
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -4.21770 0.20840 -20.23841 0.00000
## log(JPY.vol) -5.54144 1.73134 -3.20067 0.00166
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.1
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -3.96984 0.13866 -28.62959 0.00000
## log(JPY.vol) -4.05415 1.26489 -3.20514 0.00163
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.15
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -3.65544 0.13846 -26.40054 0.00000
## log(JPY.vol) -5.04776 1.40788 -3.58535 0.00045
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.2
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -3.41946 0.12149 -28.14524 0.00000
## log(JPY.vol) -3.90841 1.20708 -3.23791 0.00147
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.25
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -3.24424 0.14800 -21.92094 0.00000
## log(JPY.vol) -2.70119 1.38109 -1.95584 0.05224
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.3
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -3.00646 0.13324 -22.56436 0.00000
## log(JPY.vol) -1.16454 1.22061 -0.95407 0.34150
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.35
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -2.89360 0.07926 -36.50592 0.00000
## log(JPY.vol) -0.68706 1.03961 -0.66089 0.50964
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.4
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -2.85405 0.05271 -54.14268 0.00000
## log(JPY.vol) -0.52545 0.74676 -0.70364 0.48269
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.45
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -2.78600 0.09001 -30.95192 0.00000
## log(JPY.vol) -0.88196 1.22669 -0.71898 0.47321
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.5
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -2.72762 0.10939 -24.93413 0.00000
## log(JPY.vol) -0.67233 1.53962 -0.43668 0.66293
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.55
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -2.53524 0.11031 -22.98212 0.00000
## log(JPY.vol) -1.64576 1.74894 -0.94101 0.34813
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.6
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -2.43784 0.12571 -19.39181 0.00000
## log(JPY.vol) -1.85451 1.78781 -1.03731 0.30117
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.65
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -2.19872 0.13949 -15.76204 0.00000
## log(JPY.vol) -2.84742 1.52041 -1.87280 0.06293
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.7
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -2.14073 0.12428 -17.22565 0.00000
## log(JPY.vol) -2.65416 1.24318 -2.13497 0.03430
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.75
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -1.97726 0.14453 -13.68036 0.00000
## log(JPY.vol) -1.89488 0.95215 -1.99010 0.04829
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.8
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -1.75658 0.14762 -11.89959 0.00000
## log(JPY.vol) -0.67468 0.94301 -0.71545 0.47538
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.85
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -1.61049 0.08060 -19.98066 0.00000
## log(JPY.vol) 0.06474 0.50668 0.12777 0.89849
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.9
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -1.57462 0.03425 -45.96776 0.00000
## log(JPY.vol) 0.06146 0.19853 0.30958 0.75729
##
## Call: rq(formula = log(CNY.JPY) ~ log(JPY.vol), tau = taus, data = r_corr_vol)
##
## tau: [1] 0.95
##
## Coefficients:
## Value Std. Error t value Pr(>|t|)
## (Intercept) -1.45763 0.07076 -20.59898 0.00000
## log(JPY.vol) 0.45428 0.48666 0.93347 0.35199
plot(CNY.JPY.summary)
## Warning in log(CNY.JPY): NaNs produced
Here is the quantile regression part of the package.
taus as the quantiles of interest.quantreg package and a call to the rq function.library(quantreg)
library(magick)
## Linking to ImageMagick 6.9.9.14
## Enabled features: cairo, freetype, fftw, ghostscript, lcms, pango, rsvg, webp
## Disabled features: fontconfig, x11
img <- image_graph(res = 96)
datalist <- split(r_corr_vol, r_corr_vol$year)
out <- lapply(datalist, function(data){
p <- ggplot(data, aes(JPY.vol, CNY.JPY)) +
geom_point() +
ggtitle(data$year) +
geom_quantile(quantiles = c(0.05, 0.95)) +
geom_quantile(quantiles = 0.5, linetype = "longdash") +
geom_density_2d(colour = "red")
print(p)
})
## Warning: Removed 48 rows containing non-finite values (stat_quantile).
## Warning: Removed 48 rows containing non-finite values (stat_quantile).
## Warning: Removed 48 rows containing non-finite values (stat_density2d).
## Warning: Removed 48 rows containing missing values (geom_point).
## Warning: Removed 41 rows containing non-finite values (stat_quantile).
## Smoothing formula not specified. Using: y ~ x
## Warning: Removed 41 rows containing non-finite values (stat_quantile).
## Smoothing formula not specified. Using: y ~ x
## Warning: Removed 41 rows containing non-finite values (stat_density2d).
## Warning: Removed 41 rows containing missing values (geom_point).
## Smoothing formula not specified. Using: y ~ x
## Smoothing formula not specified. Using: y ~ x
## Smoothing formula not specified. Using: y ~ x
## Smoothing formula not specified. Using: y ~ x
## Smoothing formula not specified. Using: y ~ x
## Smoothing formula not specified. Using: y ~ x
## Smoothing formula not specified. Using: y ~ x
## Smoothing formula not specified. Using: y ~ x
while (!is.null(dev.list())) dev.off()
#img <- image_background(image_trim(img), 'white')
animation <- image_animate(img, fps = .5)
animation
Attempt interpretations to help managers understand the way market interactions affect accounts receivables.
In the ccf() function we get results that produce positive and negative lags. A positive lag looks back and a negative lag (a lead) looks forward in the history of a time series. Leading and lagging two different serries, then computing the moments and corelations show a definite asymmetry.
Suppose we lead the USD.EUR return by 5 days and lag the USD.GBP by 5 days. We will compare the correlation in this case with the opposite: lead the USD.GBP return by 5 days and lag the USD.EUR by 5 days. We will use the dplyr package to help us.
library(dplyr)
##
## Attaching package: 'dplyr'
## The following object is masked from 'package:matrixStats':
##
## count
## The following objects are masked from 'package:xts':
##
## first, last
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
x <- as.numeric(exrates.df$returns.USD.EUR) # USD.EUR
y <- as.numeric(exrates.df$returns.USD.GBP) # USD.GBP
xy.df <- na.omit(data.frame(date = dates, ahead_x= lead(x, 5), behind_y = lag(y, 5)))
yx.df <- na.omit(data.frame(date = dates, ahead_y =lead(y, 5), behind_x = lag(x, 5)))
answer <- data_moments(na.omit(as.matrix(xy.df[,2:3])))
answer <- round(answer, 4)
knitr::kable(answer)
| mean | median | std_dev | IQR | skewness | kurtosis | |
|---|---|---|---|---|---|---|
| ahead_x | 0.0872 | 0.1078 | 0.905 | 1.1820 | 0.1671 | 3.6297 |
| behind_y | 0.0945 | -0.0130 | 0.951 | 1.1134 | 1.7055 | 13.2014 |
answer <- data_moments(na.omit(as.matrix(yx.df[,2:3])))
answer <- round(answer, 4)
knitr::kable(answer)
| mean | median | std_dev | IQR | skewness | kurtosis | |
|---|---|---|---|---|---|---|
| ahead_y | 0.1072 | -0.0047 | 0.9593 | 1.1139 | 1.6409 | 12.7057 |
| behind_x | 0.0673 | 0.1043 | 0.8953 | 1.1624 | 0.1285 | 3.5876 |
cor(as.numeric(xy.df$ahead_x), as.numeric(xy.df$behind_y))
## [1] 0.0003739413
cor(as.numeric(yx.df$ahead_y), as.numeric(yx.df$behind_x))
## [1] -0.004339494
Leading x, lagging y will produce a negative correlation. The opposite produces an even smaller and positive correlation. Differences in means, etc. are not huge between the two cases, but when combined produce the correlational differences.