1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
################################################################################
## Exports
################################################################################
exportPattern("^[^\\.]") # <<< This is bad -- FIXME !!
S3method("contour", "gridData")
S3method("persp", "gridData")
S3method("plot", "hexBinning")
S3method("plot", "squareBinning")
################################################################################
## Imports
################################################################################
importFrom("mvtnorm", pmvt)
importFrom("fBasics",
.contourPlot, .perspPlot, # <-> inst/unitTests/runit.BivariateDistributions.R
.sliderMenu)
importFrom("sn",
## R/zzz-mvstnorm.R :
dmsn, pmsn, rmsn,
dmst, pmst, rmst,
## R.mvdist-msnFit.R :
mst.mple, msn.mle)
importFrom("grDevices", heat.colors)
importFrom("graphics", box, contour, image, par, persp, points, polygon, rug, title)
importFrom("methods", new)
importFrom("stats", cov, dnorm, mahalanobis, pnorm, quantile, rchisq, rnorm, var)
|