Title: | Generalized Dynamic Principal Components |
---|---|
Description: | Functions to compute the Generalized Dynamic Principal Components introduced in Peña and Yohai (2016) <DOI:10.1080/01621459.2015.1072542>. The implementation includes an automatic procedure proposed in Peña, Smucler and Yohai (2020) <DOI:10.18637/jss.v092.c02> for the identification of both the number of lags to be used in the generalized dynamic principal components as well as the number of components required for a given reconstruction accuracy. |
Authors: | Daniel Peña <[email protected]>, Ezequiel Smucler <[email protected]>, Victor Yohai <[email protected]> |
Maintainer: | Ezequiel Smucler <[email protected]> |
License: | GPL (>= 2) |
Version: | 1.1.4 |
Built: | 2024-11-07 04:27:04 UTC |
Source: | https://github.com/esmucler/gdpc |
Computes Generalized Dynamic Principal Components. The number of components can be supplied by the user or chosen automatically so that a given proportion of variance is explained. The number of lags is chosen automatically using one of the following criteria: Leave-one-out cross-validation, an AIC type criterion, a BIC type criterion or a criterion based on a proposal of Bai and Ng (2002). See Peña, Smucler and Yohai (2020) for more details.
auto.gdpc(Z, crit = 'LOO', normalize = 1, auto_comp = TRUE, expl_var = 0.9, num_comp = 5, tol = 1e-4, k_max = 10, niter_max = 500, ncores = 1, verbose = FALSE)
auto.gdpc(Z, crit = 'LOO', normalize = 1, auto_comp = TRUE, expl_var = 0.9, num_comp = 5, tol = 1e-4, k_max = 10, niter_max = 500, ncores = 1, verbose = FALSE)
Z |
Data matrix. Each column is a different time series. |
crit |
A string specifying the criterion to be used. Options are 'LOO', 'AIC', 'BIC' and 'BNG'. Default is 'LOO'. See Details below. |
normalize |
Integer. Either 1, 2 or 3. Indicates whether the data should be standardized. Default is 1. See Details below. |
auto_comp |
Logical. If TRUE compute components until the proportion of explained variance is equal to expl_var, otherwise use num_comp components. Default is TRUE. |
expl_var |
A number between 0 and 1. Desired proportion of explained variance (only used if auto_comp==TRUE). Default is 0.9. |
num_comp |
Integer. Number of components to be computed (only used if auto_comp==FALSE). Default is 5. |
tol |
Relative precision. Default is 1e-4. |
k_max |
Integer. Maximum possible number of lags. Default is 10. |
niter_max |
Integer. Maximum number of iterations. Default is 500. |
ncores |
Integer. Number of cores to be used for parallel computations. Default is 1. |
verbose |
Logical. Should progress be reported? Default is FALSE. |
Suppose the data matrix consists of series of length
.
Let
be the dynamic principal component defined using
lags, let
be the corresponding matrix of residuals and let
.
If crit = 'LOO' the number of lags is chosen among as the value
that minimizes the leave-one-out (LOO) cross-validation mean squared error, given by
where are the diagonal elements of the hat matrix
, with
being the
matrix with rows
.
If crit = 'AIC' the number of lags is chosen among as the value
that minimizes the following AIC type criterion
If crit = 'BIC' the number of lags is chosen among as the value
that minimizes the following BIC type criterion
If crit = 'BNG' the number of lags is chosen among as the value
that minimizes the following criterion
This is an adaptation of a criterion proposed by Bai and Ng (2002).
For problems of relatively small dimension, say , 'AIC' can can give better results than the
default 'LOO'.
If normalize = 1, the data is analyzed in the original units, without mean and variance standarization. If normalize = 2, the data is standardized to zero mean and unit variance before computing the principal components, but the intercepts and loadings are those needed to reconstruct the original series. If normalize = 3 the data are standardized as in normalize = 2, but the intercepts and the loadings are those needed to reconstruct the standardized series. Default is normalize = 1.
An object of class gdpcs
, that is, a list of length equal to the number of computed components. The i-th entry of this list is an object of class gdpc
, that is, a list with entries
expart |
Proportion of the variance explained by the first i components. |
mse |
Mean squared error of the reconstruction using the first i components. |
crit |
The value of the criterion of the reconstruction, according to what the user specified. |
k |
Number of lags chosen. |
alpha |
Vector of intercepts corresponding to f. |
beta |
Matrix of loadings corresponding to f. Column number |
f |
Coordinates of the i-th dynamic principal component corresponding to the periods |
initial_f |
Coordinates of the i-th dynamic principal component corresponding to the periods |
call |
The matched call. |
conv |
Logical. Did the iterations converge? |
niter |
Integer. Number of iterations. |
components
, fitted
, plot
and print
methods are available for this class.
Daniel Peña, Ezequiel Smucler, Victor Yohai
Bai J. and Ng S. (2002). “Determining the Number of Factors in Approximate Factor Models.” Econometrica, 70(1), 191–221.
Peña D., Smucler E. and Yohai V.J. (2020). “gdpc: An R Package for Generalized Dynamic Principal Components.” Journal of Statistical Software, 92(2), 1-23.
gdpc
, plot.gdpc
, plot.gdpcs
, fitted.gdpcs
, components.gdpcs
T <- 200 #length of series m <- 200 #number of series set.seed(1234) f <- rnorm(T + 1) x <- matrix(0, T, m) u <- matrix(rnorm(T * m), T, m) for (i in 1:m) { x[, i] <- 10 * sin(2 * pi * (i/m)) * f[1:T] + 10 * cos(2 * pi * (i/m)) * f[2:(T + 1)] + u[, i] } #Choose number of lags using the LOO criterion. #k_max=3 to keep computation time low autofit <- auto.gdpc(x, k_max = 3) autofit fit_val <- fitted(autofit, 1) #Get fitted values resid <- x - fit_val #Residuals plot(autofit, which_comp = 1) #Plot component
T <- 200 #length of series m <- 200 #number of series set.seed(1234) f <- rnorm(T + 1) x <- matrix(0, T, m) u <- matrix(rnorm(T * m), T, m) for (i in 1:m) { x[, i] <- 10 * sin(2 * pi * (i/m)) * f[1:T] + 10 * cos(2 * pi * (i/m)) * f[2:(T + 1)] + u[, i] } #Choose number of lags using the LOO criterion. #k_max=3 to keep computation time low autofit <- auto.gdpc(x, k_max = 3) autofit fit_val <- fitted(autofit, 1) #Get fitted values resid <- x - fit_val #Residuals plot(autofit, which_comp = 1) #Plot component
Generic function for getting components from an object.
components(object, which_comp)
components(object, which_comp)
object |
An object. Currently there is a method for objects of class |
which_comp |
Numeric vector indicating which components to get. Default is 1. |
A matrix whose columns are the desired components.
Daniel Peña, Ezequiel Smucler, Victor Yohai
Get Generalized Dynamic Principal Components from a gdpcs object.
## S3 method for class 'gdpcs' components(object, which_comp = 1)
## S3 method for class 'gdpcs' components(object, which_comp = 1)
object |
An object of class |
which_comp |
Numeric vector indicating which components to get. Default is 1. |
A matrix whose columns are the desired dynamic principal components.
Daniel Peña, Ezequiel Smucler, Victor Yohai
T <- 200 #length of series m <- 200 #number of series set.seed(1234) f <- rnorm(T + 1) x <- matrix(0, T, m) u <- matrix(rnorm(T * m), T, m) for (i in 1:m) { x[, i] <- 10 * sin(2 * pi * (i/m)) * f[1:T] + 10 * cos(2 * pi * (i/m)) * f[2:(T + 1)] + u[, i] } #Choose number of lags using the LOO criterion. #k_max=2 to keep computation time low autofit <- auto.gdpc(x, k_max = 2, auto_comp = FALSE, num_comp = 2) comps <- components(autofit, which_comp = c(1,2))
T <- 200 #length of series m <- 200 #number of series set.seed(1234) f <- rnorm(T + 1) x <- matrix(0, T, m) u <- matrix(rnorm(T * m), T, m) for (i in 1:m) { x[, i] <- 10 * sin(2 * pi * (i/m)) * f[1:T] + 10 * cos(2 * pi * (i/m)) * f[2:(T + 1)] + u[, i] } #Choose number of lags using the LOO criterion. #k_max=2 to keep computation time low autofit <- auto.gdpc(x, k_max = 2, auto_comp = FALSE, num_comp = 2) comps <- components(autofit, which_comp = c(1,2))
Get reconstructed time series from a gdpcs object.
## S3 method for class 'gdpcs' fitted(object, num_comp = 1, ...)
## S3 method for class 'gdpcs' fitted(object, num_comp = 1, ...)
object |
An object of class |
num_comp |
Integer indicating how many components to use for the reconstruction. Default is 1. |
... |
Additional arguments for compatibility. |
A matrix that is the reconstruction of the original series.
Daniel Peña, Ezequiel Smucler, Victor Yohai
T <- 200 #length of series m <- 200 #number of series set.seed(1234) f <- rnorm(T + 1) x <- matrix(0, T, m) u <- matrix(rnorm(T * m), T, m) for (i in 1:m) { x[, i] <- 10 * sin(2 * pi * (i/m)) * f[1:T] + 10 * cos(2 * pi * (i/m)) * f[2:(T + 1)] + u[, i] } #Choose number of lags using the LOO criterion. #k_max=2 to keep computation time low autofit <- auto.gdpc(x, k_max = 2, auto_comp = FALSE, num_comp = 2) recons <- fitted(autofit, num_comp = 2)
T <- 200 #length of series m <- 200 #number of series set.seed(1234) f <- rnorm(T + 1) x <- matrix(0, T, m) u <- matrix(rnorm(T * m), T, m) for (i in 1:m) { x[, i] <- 10 * sin(2 * pi * (i/m)) * f[1:T] + 10 * cos(2 * pi * (i/m)) * f[2:(T + 1)] + u[, i] } #Choose number of lags using the LOO criterion. #k_max=2 to keep computation time low autofit <- auto.gdpc(x, k_max = 2, auto_comp = FALSE, num_comp = 2) recons <- fitted(autofit, num_comp = 2)
Computes a single Generalized Dynamic Principal Component with a given number of lags.
gdpc(Z, k, f_ini = NULL, tol = 1e-4, niter_max = 500, crit = 'LOO')
gdpc(Z, k, f_ini = NULL, tol = 1e-4, niter_max = 500, crit = 'LOO')
Z |
Data matrix. Each column is a different time series. |
k |
Integer. Number of lags to use. |
f_ini |
(Optional). Numeric vector. Starting point for the iterations. If no argument is passed the ordinary (non-dynamic) first principal component completed with k lags is used. |
tol |
Relative precision. Default is 1e-4. |
niter_max |
Integer. Maximum number of iterations. Default is 500. |
crit |
A string specifying the criterion to be used to evaluate the fitted model. Options are 'LOO', 'AIC', 'BIC' and 'BNG'. Default is 'LOO'. |
See auto.gdpc
for the definition of criterion that is part of the output of this function.
An object of class gdpc
, that is, a list with entries:
expart |
Proportion of the variance explained. |
mse |
Mean squared error. |
crit |
The value of the criterion of the reconstruction, according to what the user specified. |
k |
Number of lags used. |
alpha |
Vector of intercepts corresponding to f. |
beta |
Matrix of loadings corresponding to f. Column number |
f |
Coordinates of the first dynamic principal component corresponding to the periods |
initial_f |
Coordinates of the first dynamic principal component corresponding to the periods |
call |
The matched call. |
conv |
Logical. Did the iterations converge? |
niter |
Integer. Number of iterations. |
fitted
, plot
and print
methods are available for this class.
Daniel Peña, Ezequiel Smucler, Victor Yohai
T <- 200 #length of series m <- 500 #number of series set.seed(1234) f <- rnorm(T + 1) x <- matrix(0, T, m) u <- matrix(rnorm(T * m), T, m) for (i in 1:m) { x[, i] <- 10 * sin(2 * pi * (i/m)) * f[1:T] + 10 * cos(2 * pi * (i/m)) * f[2:(T + 1)] + u[, i] } fit <- gdpc(x, k = 1) #find first DPC with one lag fit par(mfrow = c(1, 2)) #plot loadings plot(fit, which = 'Loadings', which_load = 0, xlab = '', ylab = '') plot(fit, which = 'Loadings', which_load = 1, xlab = '', ylab = '')
T <- 200 #length of series m <- 500 #number of series set.seed(1234) f <- rnorm(T + 1) x <- matrix(0, T, m) u <- matrix(rnorm(T * m), T, m) for (i in 1:m) { x[, i] <- 10 * sin(2 * pi * (i/m)) * f[1:T] + 10 * cos(2 * pi * (i/m)) * f[2:(T + 1)] + u[, i] } fit <- gdpc(x, k = 1) #find first DPC with one lag fit par(mfrow = c(1, 2)) #plot loadings plot(fit, which = 'Loadings', which_load = 0, xlab = '', ylab = '') plot(fit, which = 'Loadings', which_load = 1, xlab = '', ylab = '')
Six series corresponding to the Industrial Production Index (IPI) of France, Germany, Italy, United Kingdom, USA and Japan. Monthly data from January 1991 to December 2012.
data(ipi91)
data(ipi91)
A matrix time series with 264 observations on the following 6 variables.
France
IPI of France.
Germany
IPI of Germany.
Italy
IPI of Italy.
United Kingdom
IPI of United Kingdom.
USA
IPI of USA.
Japan
IPI of Japan.
data(ipi91) plot(ipi91, plot.type = 'multiple', main = 'Industrial Production Index') ## Not run: #Compute first GDPC with nine lags; this may take a bit. gdpc_ipi <- gdpc(ipi91, 9, niter_max = 1500) #Plot the component plot(gdpc_ipi, which = 'Component', ylab = '') #Get reconstruction of the time series and plot recons <- fitted(gdpc_ipi) colnames(recons) <- colnames(ipi91) plot(recons, main = 'Fitted values') ## End(Not run)
data(ipi91) plot(ipi91, plot.type = 'multiple', main = 'Industrial Production Index') ## Not run: #Compute first GDPC with nine lags; this may take a bit. gdpc_ipi <- gdpc(ipi91, 9, niter_max = 1500) #Plot the component plot(gdpc_ipi, which = 'Component', ylab = '') #Get reconstruction of the time series and plot recons <- fitted(gdpc_ipi) colnames(recons) <- colnames(ipi91) plot(recons, main = 'Fitted values') ## End(Not run)
Plots a gdpc
object.
## S3 method for class 'gdpc' plot(x, which = 'Component', which_load = 0, ...)
## S3 method for class 'gdpc' plot(x, which = 'Component', which_load = 0, ...)
x |
An object of class |
which |
String. Indicates what to plot, either 'Component' or 'Loadings'. Default is 'Component'. |
which_load |
Lag number indicating which loadings should be plotted. Only used if which = 'Loadings'. Default is 0. |
... |
Additional arguments to be passed to the plotting functions. |
Daniel Peña, Ezequiel Smucler, Victor Yohai
T <- 200 #length of series m <- 200 #number of series set.seed(1234) f <- rnorm(T + 1) x <- matrix(0, T, m) u <- matrix(rnorm(T * m), T, m) for (i in 1:m) { x[, i] <- 10 * sin(2 * pi * (i/m)) * f[1:T] + 10 * cos(2 * pi * (i/m)) * f[2:(T + 1)] + u[, i] } #Choose number of lags using the LOO type criterion. #k_max=3 to keep computation time low autofit <- auto.gdpc(x, k_max = 3) plot(autofit[[1]], xlab = '', ylab = '')
T <- 200 #length of series m <- 200 #number of series set.seed(1234) f <- rnorm(T + 1) x <- matrix(0, T, m) u <- matrix(rnorm(T * m), T, m) for (i in 1:m) { x[, i] <- 10 * sin(2 * pi * (i/m)) * f[1:T] + 10 * cos(2 * pi * (i/m)) * f[2:(T + 1)] + u[, i] } #Choose number of lags using the LOO type criterion. #k_max=3 to keep computation time low autofit <- auto.gdpc(x, k_max = 3) plot(autofit[[1]], xlab = '', ylab = '')
Plots a gdpcs
object.
## S3 method for class 'gdpcs' plot(x, which_comp = 1, plot.type = 'multiple', ...)
## S3 method for class 'gdpcs' plot(x, which_comp = 1, plot.type = 'multiple', ...)
x |
An object of class |
which_comp |
Numeric vector indicating which components to plot. Default is 1. |
plot.type |
Argument to be passed to |
... |
Additional arguments to be passed to the plotting functions. |
Daniel Peña, Ezequiel Smucler, Victor Yohai
T <- 200 #length of series m <- 200 #number of series set.seed(1234) f <- rnorm(T + 1) x <- matrix(0, T, m) u <- matrix(rnorm(T * m), T, m) for (i in 1:m) { x[, i] <- 10 * sin(2 * pi * (i/m)) * f[1:T] + 10 * cos(2 * pi * (i/m)) * f[2:(T + 1)] + u[, i] } #Choose number of lags using the LOO criterion. #k_max=2 to keep computation time low autofit <- auto.gdpc(x, k_max = 2, auto_comp = FALSE, num_comp = 2) autofit plot(autofit, which_comp = c(1,2), xlab = '', ylab = '')
T <- 200 #length of series m <- 200 #number of series set.seed(1234) f <- rnorm(T + 1) x <- matrix(0, T, m) u <- matrix(rnorm(T * m), T, m) for (i in 1:m) { x[, i] <- 10 * sin(2 * pi * (i/m)) * f[1:T] + 10 * cos(2 * pi * (i/m)) * f[2:(T + 1)] + u[, i] } #Choose number of lags using the LOO criterion. #k_max=2 to keep computation time low autofit <- auto.gdpc(x, k_max = 2, auto_comp = FALSE, num_comp = 2) autofit plot(autofit, which_comp = c(1,2), xlab = '', ylab = '')
Fifty series corresponding to the stock prices of the first 50 components of the Standard&Poor's 500 index. Five hundred daily observations starting 1/1/2010.
data(pricesSP50)
data(pricesSP50)
A matrix time series with 500 observations on the stock prices of the first 50 components of the Standard&Poor's 500 index.
data(pricesSP50) ## Not run: #Plot the first four series plot(pricesSP50[, 1:4], main = 'Four components of the S&P500 index') #Compute GDPCs; this may take a bit. fit_SP <- auto.gdpc(pricesSP50, normalize = 2, niter_max = 1000, ncores= 4) fit_SP #Get reconstruction and plot recons <- fitted(fit_SP, num_comp = 2) colnames(recons) <- colnames(pricesSP50) plot(recons[, 1:4], main = 'Reconstruction of four components of the S&P500 index') ## End(Not run)
data(pricesSP50) ## Not run: #Plot the first four series plot(pricesSP50[, 1:4], main = 'Four components of the S&P500 index') #Compute GDPCs; this may take a bit. fit_SP <- auto.gdpc(pricesSP50, normalize = 2, niter_max = 1000, ncores= 4) fit_SP #Get reconstruction and plot recons <- fitted(fit_SP, num_comp = 2) colnames(recons) <- colnames(pricesSP50) plot(recons[, 1:4], main = 'Reconstruction of four components of the S&P500 index') ## End(Not run)