Description Usage Arguments Details Value Author(s) References See Also Examples
Constructs a FDG copula class object.
1 |
family |
character to indicate the family of the generators |
parameters |
the parameter vector |
extremevalue |
boolean indicating if the extreme-value limit copula corresponding to the FDG copula is to be constructed instead |
checkbounds |
boolean indicating if an error message is to be produced in case of parameter values are out of their theoretical bounds |
The possible families are 'cuadrasauge', 'frechet', 'sinus' and 'exponential'. Control over the possibility of NOT returning an error message in case of wrong parameters is given to be able to use certain optimization algorithms.
An object of class FDGcopula-class
Gildas Mazo
Mazo G., Girard, S., Forbes, F. A flexible and tractable class of one-factor copulas, http://hal.archives-ouvertes.fr/hal-00979147
FDGcopula-class
for a description of the class
1 2 3 4 5 6 7 8 9 10 11 12 | ## Create a FDG copula with Cuadras-Aug\'e generators
## and parameter vector 'theta'
theta <- c(.3,.5,.7,.9)
myFDGcopula <- FDGcopula("cuadrasauge", theta)
str(myFDGcopula)
## Create its extreme-value limit copula
myExtremeValueFDGcopula <- FDGcopula("cuadrasauge", theta,
extremevalue=TRUE)
str(myExtremeValueFDGcopula)
## Note: the two above copulas are NOT the same!
|
Loading required package: Rcpp
Formal class 'FDGcopula' [package "FDGcopulas"] with 5 slots
..@ dimension : int 4
..@ parameters : num [1:4] 0.3 0.5 0.7 0.9
..@ family : chr "cuadrasauge"
..@ extremevalue : logi FALSE
..@ parameterrange: num [1:2] 0 1
Formal class 'FDGcopula' [package "FDGcopulas"] with 5 slots
..@ dimension : int 4
..@ parameters : num [1:4] 0.3 0.5 0.7 0.9
..@ family : chr "cuadrasauge"
..@ extremevalue : logi TRUE
..@ parameterrange: num [1:2] 0 1
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.