fit_copula: Archimedean Copulas for Scenario Analysis

fit_copula_claytonR Documentation

Archimedean Copulas for Scenario Analysis

Description

Functions to build new types of copulas.

Usage

fit_copula_clayton(
  copula,
  method = c("mpl", "ml", "itau", "irho", "itau.mpl"),
  ...
)

fit_copula_gumbel(
  copula,
  method = c("mpl", "ml", "itau", "irho", "itau.mpl"),
  ...
)

fit_copula_frank(
  copula,
  method = c("mpl", "ml", "itau", "irho", "itau.mpl"),
  ...
)

fit_copula_t(copula, method = c("mpl", "ml", "itau", "irho", "itau.mpl"), ...)

fit_copula_normal(
  copula,
  method = c("mpl", "ml", "itau", "irho", "itau.mpl"),
  ...
)

fit_copula_joe(
  copula,
  method = c("mpl", "ml", "itau", "irho", "itau.mpl"),
  ...
)

Arguments

copula

An object of the cma class.

method

A character with the method to be used for optimization. The default is mpl.

...

Additional arguments to be passed to archmCopula.

Value

An S3 list of the cma_copula class.

Examples

x <- matrix(diff(log(EuStockMarkets)), ncol = 4)

sep <- cma_separation(x)

fit_copula_clayton(sep)
fit_copula_gumbel(sep)

Reckziegel/CMA documentation built on July 13, 2022, 10:31 p.m.