Description Usage Arguments Examples
Fits a vine to data using gausstrvine.mst
and then
fitting the vine array layer-by-layer using fitrvine_basic
.
Only fits a regular vine, not a generalized vine.
1 2 3 4 5 6 | fitrvine_basic(
dat,
vbls = 1:ncol(dat),
ntrunc = length(vbls) - 1,
families = c("bvncop", "bvtcop", "mtcj", "gum", "frk", "joe", "bb1", "bb7", "bb8")
)
|
dat |
Data matrix with uniform scores. |
vbls |
Vector of variables (column numbers in |
ntrunc |
Truncation level of vine. |
families |
Copula families to fit. Sorry, no 'indepcop'. |
1 2 3 4 5 | set.seed(123)
dat <- matrix(runif(500), ncol = 5)
fitrvine_basic(dat)
fitrvine_basic(dat, 3)
fitrvine_basic(dat, integer(0))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.