pickands.plot {lcopula}R Documentation

Plot Pickands dependence function for CDA of Liouville copulas

Description

The function will draw the Pickands dependence function for output in tikz if the corresponding function is selected.

Usage

pickands.plot(
  rho,
  alpha,
  plot.new = TRUE,
  CDA = c("C", "S"),
  tikz = FALSE,
  ...
)

Arguments

rho

index of regular variation parameter

alpha

vector of Dirichlet allocations. Currently must be of length 2

plot.new

boolean indicating whether a new plotting device should be called

CDA

whether to plot Pickands function for the extremal model of the copula (C) or the survival copula (S), which is the scaled Dirichlet

tikz

boolean specifying whether to prepare plot for tikz output. Defaults to F

...

additional arguments passed to lines

Value

a plot of the Pickands dependence function

Examples

pickands.plot(
  rho = 0.9, 
  alpha = c(1,1), 
  col = "slateblue1", 
  CDA = "C")
pickands.plot(
  rho = 0.9, 
  alpha = c(2,3),
  col = "slateblue2", 
  CDA = "C", 
  plot.new = FALSE)
pickands.plot(
 rho = 0.5, 
 alpha = c(2,3), 
 col = "slateblue3", 
 CDA = "C", 
 plot.new = FALSE)
#Parameters for the Pickands function of the scaled Dirichlet need not be integer
pickands.plot(
  rho = 0.9, 
  alpha = c(1,1), 
  CDA = "S")
pickands.plot(
  rho = 0.9, 
  alpha = c(0.2,0.5), 
  col = "darkred", 
  CDA = "S", 
  plot.new = FALSE)
pickands.plot(
 rho = 0.8, 
 alpha = c(1.2,0.1), 
 col = "red", 
 CDA = "S", 
 plot.new = FALSE)

[Package lcopula version 1.0.7 Index]