Learn R Programming

rvinecopulib (version 0.2.8.1.0)

vine_predict_and_fitted: Predictions and fitted values for a vine copula model

Description

Predictions of the density and distribution function for a vine copula model.

Usage

# S3 method for vine
predict(object, newdata, what = "pdf", n_mc = 10^4, ...)

# S3 method for vine fitted(object, what = "pdf", n_mc = 10^4, ...)

Arguments

object

a vine object.

newdata

points where the fit shall be evaluated.

what

what to predict, either "pdf" or "cdf".

n_mc

number of samples used for quasi Monte Carlo integration when what = "cdf".

...

unused.

Value

fitted() and predict() have return values similar to dvine() and pvine().

Examples

Run this code
# NOT RUN {
x <- sapply(1:5, function(i) rnorm(50))
fit <- vine(x, copula_controls = list(family_set = "par"))
all.equal(predict(fit, x), fitted(fit))
# }

Run the code above in your browser using DataLab