interALL {AssetCorr} | R Documentation |
Function to use multiple estimators simultaneously
Description
To give a first insight of the default time series, this function combines multiple estimator functions and visualize the results.
Usage
interALL(d1,n1,d2,n2,rho1,rho2, B=NA, DB=NA, JC=FALSE, CI_Boot=NA, plot=FALSE,
type="bca",Estimator=c("Copula","Cov","JDP","MLE"),show_progress=FALSE)
Arguments
d1 |
a vector, containing the default time series of sector 1. |
n1 |
a vector, containing the number of obligors at the beginning of the period in sector 1. |
d2 |
a vector, containing the default time series of sector 2. |
n2 |
a vector, containing the number of obligors at the beginning of the period in sector 2. |
rho1 |
estimated intra correlation of sector 1. |
rho2 |
estimated intra correlation of sector 2. |
B |
an integer, indicating how many bootstrap repetitions should be used for the single bootstrap corrected estimate. |
DB |
a combined vector, indicating how many bootstrap repetitions should be used for the inner (first entry) and outer loop (second entry) to correct the bias using the double bootstrap. |
JC |
a logical variable, indicating if the jackknife corrected estimate should be calculated. |
CI_Boot |
a number, indicating the desired confidence interval if the single bootstrap correction is specified.
By default, the interval is calculated as the bootstrap corrected and accelerated confidence interval (Bca). Furthermore, the analytical confidence intervals are provided, using the same value as |
plot |
a logical variable, indicating whether a plot of the default time series and the estimates should be generated using the |
type |
a string, indicating the desired method to calculate the bootstrap confidence intervals. For more details see |
Estimator |
a combined string, indicating which estimators should be used. All estimators are set as default. |
show_progress |
a logical variable, indicating whether a progress bar should be displayed. |
Details
To give an first insight, the function provides an overview of the default time series and estimates using different estimators simultaneously.
If DB
is specified, the single bootstrap corrected estimate will be calculated by using the bootstrap values of the outer loop.
Value
The returned value is a data frame, containing the following columns:
Estimator |
Name of the applied estimator |
Estimate |
Value of the calculated estimate |
Type |
String, which indicating corrected/non-corrected estimates |
correction |
Name of the correction method |
B |
Number of single bootstrap repetitions |
DB |
Number of the double bootstrap repetitions |
CI_Boot |
Selected two-sided bootstrap confidence interval |
CI |
A string, indicating if the corresponding value is the upper or lower bound |
Author(s)
Kevin Jakob
References
Chang J, Hall P (2015). “Double-bootstrap methods that use a single double-bootstrap simulation.” Biometrika, 102(1), 203–214.
De Servigny A, Renault O (2002). “Default correlation: empirical evidence.” Working Paper, Standard and Poors. Available at: https://www.semanticscholar.org/paper/Default-correlation%3A-empirical-evidence-Servigny-Renault/aae251436d0e3b489951c0d38463d71106755675.
Duellmann K, Gehde-Trapp M (2004). “Systematic risk in recovery rates: an empirical analysis of US corporate credit exposures.” Bundesbank Series 2, Discussion Paper. Available at SSRN: http://hdl.handle.net/10419/19729. Accessed: 02.11.2017.
Efron B, Tibshirani RJ (1994). An introduction to the bootstrap. CRC press.
Frei C, Wunsch M (2018). “Moment Estimators for Autocorrelated Time Series and their Application to Default Correlations.” Journal of Credit Risk, 14, 1–29.
Gordy MB (2000). “A comparative anatomy of credit risk models.” Journal of Banking & Finance, 24(1), 119–149.
Gordy MB, Heitfield E (2010). “Small-sample estimation of models of portfolio credit risk.” In Recent Advances in Financial Engineering: Proceedings of the KIER-TMU International Workshop on Financial Engineering, 2009: Otemachi, Sankei Plaza, Tokyo, 3-4 August 2009, 43–63.
Kalkbrener M, Onwunta A (2010). “Validating structural credit portfolio models.” Model risk - identification, measurement and management. Risk Books, London, 233–261.
Lucas DJ (1995). “Default correlation and credit analysis.” The Journal of Fixed Income, 4(4), 76–87.
Meyer C (2009). “Estimation of intra-sector asset correlations.” The Journal of Risk Model Validation, 3(3), 47–79.
Teetor P (2011). R Cookbook: Proven recipes for data analysis, statistics, and graphics. O'Reilly Media, Inc.
See Also
intraAMM
, intraFMM
, intraJDP2
intraMLE
, intraJDP1
, intraCMM
Examples
set.seed(111)
Psi=rmvnorm(20,sigma=matrix(c(1,0.5,0.5,1),2))
PDcond1=pnorm((qnorm(0.01)-sqrt(0.05)*Psi[,1])/sqrt(1-0.05))
PDcond2=pnorm((qnorm(0.01)-sqrt(0.2)*Psi[,2])/sqrt(1-0.2))
D1=rbinom(20,1000,PDcond1)
D2=rbinom(20,1000,PDcond2)
N1=N2=rep(1000,20)
DTS=cbind(D1,D2)
N=cbind(N1,N2)
rho1=intraMLE(D1,N1)$Original
rho2=intraMLE(D2,N2)$Original
#Point Estimates
interALL(D1,N1,D2,N2,rho1,rho2, plot=TRUE)
#Bootstrap corrected estimates of all available estimators:
InterCorr=interALL(D1,N1,D2,N2,rho1,rho2, B=500, CI_Boot=0.95 , plot=TRUE, show_progress=TRUE)
#Jackknife correction
InterCorr=interALL(D1,N1,D2,N2,rho1,rho2, JC=TRUE, plot=TRUE)
#Double Bootstrap correction with 10 repetitions in the inner loop and 50 in the outer loop
InterCorr=interALL(D1,N1,D2,N2,rho1,rho2, DB=c(10,50), plot=TRUE)