View source: R/vinecop_methods.R
mBICV | R Documentation |
Calculates the modified vine copula Bayesian information criterion.
mBICV(object, psi0 = 0.9, newdata = NULL)
object |
a fitted |
psi0 |
baseline prior probability of a non-independence copula. |
newdata |
optional; a new data set. |
The modified vine copula Bayesian information criterion (mBICv) is defined as
BIC = -2 loglik + ν log(n) - 2 ∑_{t=1}^{d - 1} (q_t log(ψ_0^t) - (d - t - q_t) log(1 - ψ_0^t))
where \mathrm{loglik} is the log-likelihood and ν is the (effective) number of parameters of the model, t is the tree level ψ_0 is the prior probability of having a non-independence copula and q_t is the number of non-independence copulas in tree t. The mBICv is a consistent model selection criterion for parametric sparse vine copula models.
Nagler, T., Bumann, C., Czado, C. (2019). Model selection for sparse high-dimensional vine copulas with application to portfolio risk. Journal of Multivariate Analysis, in press (https://arxiv.org/pdf/1801.09739.pdf)
u <- sapply(1:5, function(i) runif(50)) fit <- vinecop(u, family = "par", keep_data = TRUE) mBICV(fit, 0.9) # with a 0.9 prior probability of a non-independence copula mBICV(fit, 0.1) # with a 0.1 prior probability of a non-independence copula
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.