View source: R/liouville_extreme.R
pickands.plot | R Documentation |
The function will draw the Pickands dependence function for output in tikz
if
the corresponding function is selected.
pickands.plot(
rho,
alpha,
plot.new = TRUE,
CDA = c("C", "S"),
tikz = FALSE,
...
)
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 ( |
tikz |
boolean specifying whether to prepare plot for |
... |
additional arguments passed to |
a plot of the Pickands dependence function
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.