powered by
Predictions of the density and distribution function for a vine copula model.
# S3 method for vine predict(object, newdata, what = "pdf", n_mc = 10^4, cores = 1, ...)# S3 method for vine fitted(object, what = "pdf", n_mc = 10^4, cores = 1, ...)
# S3 method for vine fitted(object, what = "pdf", n_mc = 10^4, cores = 1, ...)
fitted() and predict() have return values similar to dvine()
fitted()
predict()
dvine()
and pvine().
pvine()
a vine object.
vine
points where the fit shall be evaluated.
what to predict, either "pdf" or "cdf".
"pdf"
"cdf"
number of samples used for quasi Monte Carlo integration when what = "cdf".
what = "cdf"
number of cores to use; if larger than one, computations are done in parallel on cores batches .
cores
unused.
x <- sapply(1:5, function(i) rnorm(50)) fit <- vine(x, copula_controls = list(family_set = "par"), keep_data = TRUE) all.equal(predict(fit, x), fitted(fit), check.environment = FALSE)
Run the code above in your browser using DataLab