state.ident.lsd {LSDirf} | R Documentation |
IRF state Identification
Description
This function implements the Random Forest Identification Algorithm (RFSIA) on the data produced by a Monte Carlo experiment, typically from (but not restricted to) a LSD simulation model. It exploits the random forest regression technique to obtain a series of "meaningful" stratifications of the data on which state-dependence is then tested.
Usage
state.ident.lsd( data, irf, state.vars = NULL, metr.irf = NULL,
add.vars = NULL, state.cont = FALSE,
ntree = 500, maxdepth = 1, nodesize = 5,
mtry = max( floor( ifelse( ! is.null( state.vars ),
length( state.vars ),
dim( data )[ 2 ] ) / 3 ),
1 ),
quantile = 10, alpha = 0.05, seed = 1, ... )
Arguments
data |
numeric: a 3-dimensional array containing data from Monte Carlo (MC) simulation samples where the impulse (shock/treatment) was not applied/occurred. The array must have dimensions ordered as time steps x variables x MC samples. This format is automatically produced by read.3d.lsd but using it is not required. The second array dimension (variables) must be named with the names of the variables used in the analysis. The absolute minimum array dimensions are 2x1x2. |
irf |
object: an object produced by a previous run of |
state.vars |
character: a vector of variable names to consider as state variables. |
metr.irf |
function: a function that assigns a metric to compare each run of a Monte Carlo experiment, to be used on regressions. The function must take a cumulative impulse-response matrix, organized as runs on rows and response times (0, 1, ..., |
add.vars |
function: an optional function to add new variables to the MC dataset, before the analysis is performed. The function must take a single Monte Carlo run data frame, organized as time on rows and (original) variables on columns. It must return this data frame with new column(s) added, one per each new variable. |
state.cont |
logical: if |
ntree |
integer: number of trees to grow. This number should not be set to too small values, to ensure that every possible state gets predicted at least a few times. |
maxdepth |
integer: maximum depth of the trees to consider. The default (1) represents the shortest possible trees. |
nodesize |
integer: minimum number of associated data observations to a node be considered in the analysis. |
mtry |
integer: number of state variables randomly sampled as candidates at each node for the random forest algorithm. The default is to use one third of the number of considered state variables. |
quantile |
integer: number of quantiles to consider when discretizing states. |
alpha |
numeric: a value between 0 and 0.5, defining the desired statistical significance level to be adopted in the analysis. The default is 0.05 (5%). |
seed |
integer: a value defining the initial state of the pseudo-random number generator. |
... |
additional parameters to configure printing and plotting. |
Details
As a dynamic system, a simulation model may have its outputs analyzed when a brief input signal (an impulse or "shock") is applied to one of its inputs. In particular, the effect of the shock may be correlated to some system-specific state, in which it may be amplified or attenuated. This function allows for the identification of possible relevant states, that is, states which are both probable and distinguishable among them.
The function operates over data
from multiple realizations of a Monte Carlo experiment, and a previous (linear) impulse-response function analysis (irf
) performed by irf.lsd
.
Value
It returns an object of class state.ident.lsd
, which has a print
-specific method for presenting the analysis results. This object contains several items:
state.freq |
data frame: each row represents one of the identified discrete states, ordered in decreasing frequency. First column ( |
state.vars |
character: a vector of variable names effectively available as state variables. |
t.horiz |
integer: the time horizon used in the analysis (same as the |
var.irf |
character: the name of the variable used in the impulse-response analysis (same as the |
var.ref |
character: the name of the scale-reference variable used in the analysis (same as the |
stat |
character: the Monte Carlo statistic used in the analysis (same as the |
alpha |
numeric: the statistical significance level used in the analysis (same as the |
nsample |
integer: the effective number of of Monte Carlo (MC) samples effectively used for deriving the response function, after the removal of outliers if |
outliers |
integer: vector containing the number of each MC sample considered an outlier, and so removed from the analysis in |
ntree |
integer: number of trees grown (same as |
maxdepth |
integer: maximum depth of the trees considered (same as |
nodesize |
integer: minimum number of data observations in a node considered (same as |
mtry |
integer: number of state variables sampled per node (same as |
quantile |
integer: number of quantiles used for discretizing states (same as |
state.cont |
data frame: each row represents one of the identified continuous states, ordered by the absolute effect on the metric. Columns are organized in groups of three: state variable name ( |
state.cont.num |
integer: the total number of continuous states identified. |
call |
character: the command line used to call the function. |
Note
See the note in LSDirf-package for an methodological overview and for instructions on how to perform the state-dependent impulse-response function analysis.
Author(s)
Marcelo C. Pereira [aut, cre] (<https://orcid.org/0000-0002-8069-2734>), Marco Amendola [aut] (<https://orcid.org/0000-0003-3056-5558>)
See Also
irf.lsd
,
read.3d.lsd
,
read.4d.lsd
,
Examples
# Example data generation: Y is an AR(1) process that may receive a shock at
# t=50, S is the shock (0/1), a combination of 3 AR(1) processes (X1-X3)
# X4 is another AR(1) process, uncorrelated with S, X4sq is just X4^2
# All AR(1) processes have the same phi=0.98 coefficient, and are Monte
# Carlo sampled 500 times
set.seed( 1 ) # make results reproducible
# LSD-like arrays to store simulated time series (t x var x MC)
dataNoShock <- dataShock <-array ( 0, dim = c( 60, 7, 500 ) )
colnames( dataNoShock ) <- colnames( dataShock ) <-
c( "Y", "S", "X1", "X2", "X3", "X4", "X4sq" )
# Monte Carlo sampling
for( n in 1 : 500 ) {
# simulation time
for( t in 2 : 60 ) {
# AR process on X vars
for( v in c( "X1", "X2", "X3", "X4" ) ) {
dataNoShock[ t, v, n ] = dataShock[ t, v, n ] =
0.98 * dataShock[ t - 1, v, n ] + rnorm( 1, 0, 0.1 )
}
# apply shock once
if( t == 50 ) {
dataShock[ t, "S", n ] <- 1
shockEff <- 0.4 + 0.7 * isTRUE( dataShock[ t, "X1", n ] > 0.1 ) -
0.4 * isTRUE( dataShock[ t, "X2", n ] > 0.1 ) +
0.2 * isTRUE( dataShock[ t, "X3", n ] > 0.05 ) + rnorm( 1, 0, 0.2 )
} else
shockEff <- 0
# AR process on Y var
rs <- rnorm( 1, 0, 0.1 )
dataNoShock[ t, "Y", n ] = 0.98 * dataNoShock[ t - 1, "Y", n ] + rs
dataShock[ t, "Y", n ] = 0.98 * dataShock[ t - 1, "Y", n ] + shockEff + rs
}
}
# another uncorrelated var
dataNoShock[ , "X4sq", ] <- dataShock[ , "X4sq", ] <- dataShock[ , "X4", ] ^ 2
# linear IRF analysis
linearIRF <- irf.lsd( data = dataNoShock, # non-shocked MC data
data.shock = dataShock, # shocked data
t.horiz = 10, # post-shock analysis t horizon
var.irf = "Y", # variable to compute IRF
var.shock = "S", # shock variable (impulse)
irf.type = "none" ) # no plot of linear IRF
# Random-forest state identification
stateId <- state.ident.lsd( data = dataNoShock, # non-shocked MC data
irf = linearIRF, # linear IRF produced by irf.lsd
state.vars = c( "X1", "X2", "X3", "X4", "X4sq" ),
# state variables to consider
mtry = 3 ) # number of samples per node
print( stateId ) # show identification data
# state-dependent IRF analysis for most frequent state identified
stateIRF <- state.irf.lsd( data = dataNoShock, # non-shocked MC data
irf = linearIRF, # linear IRF produced by irf.lsd
states = stateId ) # object with identified states
plot( stateIRF, irf.type = "cum.irf" ) # cumulative IRF plot
print( stateIRF ) # show IRF data