stress_RM_w {SWIM} | R Documentation |
Stressing Risk Measure
Description
Provides weights on simulated scenarios from a baseline stochastic model, such that a stressed model component (random variable) fulfils a constraint on its risk measure defined by a gamma function. The default risk measure is the Expected Shortfall at level alpha.
Usage
stress_RM_w(
x,
alpha = 0.8,
q_ratio = NULL,
q = NULL,
k = 1,
h = 1,
gamma = NULL,
names = NULL,
log = FALSE,
method = "Nelder-Mead"
)
Arguments
x |
A vector, matrix or data frame
containing realisations of random variables. Columns of |
alpha |
Numeric, vector, the level of the Expected Shortfall. ( |
q_ratio |
Numeric, vector, the ratio of the stressed RM to
the baseline RM (must be of the same length as alpha or gamma). |
q |
Numeric, vector, the stressed RM at level
|
k |
Numeric, the column of |
h |
Numeric, a multiplier of the default bandwidth using Silverman’s rule (default |
gamma |
Function of one variable, that defined the gamma of the risk measure. ( |
names |
Character vector, the names of stressed models. |
log |
Boolean, the option to print weights' statistics. |
method |
The method to be used in [stats::optim()]. ( |
Details
This function implements stresses on distortion risk measures.
Distortion risk measures are defined by a square-integrable function
gamma
where
\int_0^1 gamma(u) du = 1.
The distortion risk measure for some gamma
and distribution
G
is calculated as:
\rho_{gamma}(G) = \int_0^1 \breve(G)(u) gamma(u) du.
Expected Shortfall (ES) is an example of a distortion risk measure.
The ES at level alpha
of a random variable with distribution
function F is defined by:
ES_{alpha} = 1 / (1 - alpha) * \int_{alpha}^1 VaR_u d u.
Value
A SWIMw
object containing:
-
x
, a data.frame containing the data; -
h
, h is a multiple of the Silverman’s rule; -
u
, vector containing the gridspace on [0, 1]; -
lam
, vector containing the lambda's of the optimized model; -
str_fY
, function defining the densities of the stressed component; -
str_FY
, function defining the distribution of the stressed component; -
str_FY_inv
, function defining the quantiles of the stressed component; -
gamma
, function defining the risk measure; -
new_weights
, a list of functions, that applied to thek
th column ofx
, generates the vectors of scenario weights. Each component corresponds to a different stress; -
type = "RM"
; -
specs
, a list, each component corresponds to a different stress and containsk
,alpha
, andq
.
See SWIM
for details.
Author(s)
Zhuomin Mao
References
Pesenti SM, Millossovich P, Tsanakas A (2019).
“Reverse sensitivity testing: What does it take to break the model?”
European Journal of Operational Research, 274(2), 654–670.
Pesenti S BAMPTA (2020).
“Scenario Weights for Importance Measurement (SWIM) - An R package for sensitivity analysis.”
Annals of Actuarial Science 15.2 (2021): 458-483. Available at SSRN: https://www.ssrn.com/abstract=3515274.
Pesenti SM (2021). “Reverse Sensitivity Analysis for Risk Modelling.” Available at SSRN 3878879.
See Also
Other stress functions:
stress_HARA_RM_w()
,
stress_RM_mean_sd_w()
,
stress_VaR_ES()
,
stress_VaR()
,
stress_mean_sd_w()
,
stress_mean_sd()
,
stress_mean_w()
,
stress_mean()
,
stress_moment()
,
stress_prob()
,
stress_user()
,
stress_wass()
,
stress()
Examples
## Not run:
set.seed(0)
x <- as.data.frame(cbind(
"normal" = rnorm(1000),
"gamma" = rgamma(1000, shape = 2)))
res1 <- stress_wass(type = "RM", x = x,
alpha = 0.9, q_ratio = 1.05)
summary(res1)
## calling stress_RM_w directly
## stressing "gamma"
res2 <- stress_RM_w(x = x, alpha = 0.9,
q_ratio = 1.05, k = 2)
summary(res2)
# dual power distortion with beta = 3
# gamma = beta * u^{beta - 1}, beta > 0
gamma <- function(u){
.res <- 3 * u^2
return(.res)
}
res3 <- stress_wass(type = "RM", x = x,
gamma = gamma, q_ratio = 1.05)
summary(res3)
## End(Not run)