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 29 30 31 32 33 34 35 36 37 38
|
################################################################################
## Exports
################################################################################
exportPattern("^[^\\.]")
## hidden functions needed by fPortfolio
export(".baggedMeanCov")
export(".bayesSteinMeanCov")
export(".cov.arw")
export(".cov.nnve")
export(".cov.shrink")
export(".donostahMeanCov")
export(".ledoitWolfMeanCov")
export(".rmtMeanCov")
export(".studentMeanCov")
################################################################################
## imports
################################################################################
import(timeDate)
import(timeSeries)
import(fBasics)
import(fMultivar)
import(robustbase)
import(MASS)
import(ecodist)
import(mvnormtest)
import(energy)
# Only importing what we need from "sn" since it exports a function
# called "vech"; as "fBasics" does...
importFrom("sn", rmst, rmsn, rmsc)
importFrom("grDevices", cm.colors, palette, rainbow, rgb, xy.coords)
importFrom("graphics", Axis, arrows, axis, box, boxplot, grid, hist, image, legend,
mtext, pairs, par, plot.xy, polygon, rect, segments, stars, strwidth, text, title)
importFrom("stats", approx, as.dist, cor, cor.test, cov, cov2cor, density, dist,
dnorm, hclust, kmeans, lowess, mad, mahalanobis, pchisq, qchisq, qf, runif,
sd, symnum, var)
|