Learn R Programming

kdecopula (version 0.9.2)

fitted.kdecopula: Extract fitted values from a kdecop() fits.

Description

Simply calls predict(object, object$udata, what).

Usage

# S3 method for kdecopula
fitted(object, what = "pdf", ...)

Arguments

object

an object of class kdecopula.

what

what to predict, one of c("pdf", "cdf", "hfunc1", "hfunc2", "hinv1", "hinv2").

...

unused.

See Also

predict.kdecopula()

Examples

Run this code
# NOT RUN {
data(wdbc)
udat <- apply(wdbc[, -1], 2, function(x) rank(x) / (length(x) + 1))
fit <- kdecop(udat[, 5:6])

all.equal(fitted(fit), predict(fit, fit$udata))
# }

Run the code above in your browser using DataLab