plot.CopApprox {SimCop} | R Documentation |
Plots the histogram density approximation to a copula as determined by GetApprox
. Currently works only for bivariate copulae.
## S3 method for class 'CopApprox'
plot(x, ...)
x |
an object of |
... |
not used. |
Berwin A. Turlach <berwin.turlach@gmail.com>
Tajvidi, N. and Turlach, B.A. (2017). A general approach to generate random variates for multivariate copulae, Australian & New Zealand Journal of Statistics. Doi:10.1111/anzs.12209.
Cop <- NewMEVGumbelCopula(4)
CopApprox1 <- GetApprox(Cop, dim=2)
plot(CopApprox1)
CopApprox2 <- GetApprox(Cop, dim=2, type=2)
plot(CopApprox2)