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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
################################################
## fExtremes
################################################
################################################
## import name space
################################################
import("timeDate")
import("timeSeries")
import("fBasics")
import("fGarch")
importFrom("graphics", axis, box, grid, hist, mtext, par, rug, text, title)
importFrom("methods", is, new)
importFrom("stats", acf, dnorm, integrate, lowess, lsfit, optim,
ppoints, qchisq, qexp, qnorm, rexp, runif, sd, spline, uniroot, var)
################################################
## functions
################################################
export(
# DataPreprocessing
blockMaxima,
findThreshold,
pointProcess,
deCluster,
# ExtremeIndex
thetaSim,
blockTheta,
clusterTheta,
runTheta,
ferrosegersTheta,
exindexPlot,
exindexesPlot,
# ValueAtRisk
VaR,
CVaR,
# GevDistribution
dgev,
pgev,
qgev,
rgev,
gevMoments,
gevSlider,
# GpdDistribution
dgpd,
pgpd,
qgpd,
rgpd,
gpdMoments,
gpdSlider,
# ExtremesData
emdPlot,
qqparetoPlot,
mePlot,
mrlPlot,
mxfPlot,
msratioPlot,
recordsPlot,
ssrecordsPlot,
sllnPlot,
lilPlot,
xacfPlot,
normMeanExcessFit,
ghMeanExcessFit,
hypMeanExcessFit,
nigMeanExcessFit,
ghtMeanExcessFit,
# GevModelling
gevSim,
gumbelSim,
gevFit,
gumbelFit,
gevrlevelPlot,
# GpdModelling
gpdSim,
gpdFit,
# GevMdaEstimation
hillPlot,
shaparmPlot,
shaparmPickands,
shaparmHill,
shaparmDEHaan,
# GpdRisk
gpdQPlot,
gpdQuantPlot,
gpdRiskMeasures,
gpdSfallPlot,
gpdShapePlot,
gpdTailPlot,
tailPlot,
tailSlider,
tailRisk,
# Needed for unit tests
.gevpwmFit,
.gevmleFit,
.gumpwmFit,
.gummleFit,
.gevrlevelLLH
)
S3method(plot, fGEVFIT)
S3method(summary, fGEVFIT)
S3method(plot, fGPDFIT)
S3method(summary, fGPDFIT)
|