local.multiple.cross.regression.Rd
Produces an estimate of local multiple cross-regressions (as defined below) along with approximate confidence intervals.
local.multiple.cross.regression(xx, M, window="gauss", lag.max=NULL, p=.975, ymaxr=NULL)
xx | A list of \(n\) time series, e.g. xx <- list(v1, v2, v3) |
---|---|
M | length of the weight function or rolling window. |
window | type of weight function or rolling window. Six types are allowed, namely the uniform window, Cleveland or tricube window, Epanechnikov or parabolic window, Bartlett or triangular window, Wendland window and the gaussian window. The letter case and length of the argument are not relevant as long as at least the first four characters are entered. |
lag.max | maximum lag (and lead). If not set, it defaults to half the square root of the length of the original series. |
p | one minus the two-sided p-value for the confidence interval, i.e. the cdf value. |
ymaxr | index number of the variable whose correlation is calculated against a linear combination of the rest, otherwise at each wavelet level lmc chooses the one maximizing the multiple correlation. |
The routine calculates a set of time series of multiple cross-regressions, one per lagand lead) out of \(n\) variables.
List of four elements:
List of three elements:
List of seven elements:
numeric matrix (rows = #observations, cols = #lags and leads) giving, at each value in time, the index number of the variable whose correlation is calculated against a linear combination of the rest. By default, lmcr chooses at each value in time the variable maximizing the multiple correlation.
dataframe (rows = #observations, cols = #regressors) of original data.
Fernández-Macho, J., 2018. Time-localized wavelet multiple regression and correlation, Physica A: Statistical Mechanics, vol. 490, p. 1226--1238. <DOI:10.1016/j.physa.2017.11.050>
## Based on Figure 4 showing correlation structural breaks in Fernandez-Macho (2018). library(wavemulcor) data(exchange) returns <- diff(log(as.matrix(exchange))) returns <- ts(returns, start=1970, freq=12) N <- dim(returns)[1] M <- 30 window <- "gauss" lmax <- 1 demusd <- returns[,"DEM.USD"] jpyusd <- returns[,"JPY.USD"] set.seed(140859) xrand <- rnorm(N) # --------------------------- xx <- data.frame(demusd, jpyusd, xrand) ##exchange.names <- c(colnames(returns), "RAND") Lst <- local.multiple.cross.regression(xx, M, window=window, lag.max=lmax) # --------------------------- ##Producing correlation plot plot_local.multiple.cross.correlation(Lst, lmax) #, xaxt="s")#> NULL#> NULL