data(annMax) # Annual Discharge Maxima (streamflow)
distLquantile(annMax, emp=FALSE) # several distribution functions in lmomco
distLquantile(annMax, truncate=0.8, probs=0.95) # POT (annMax already block maxima)
distLquantile(annMax, probs=0.95, plot=TRUE, qlinargs=list(lwd=3), nbest=5, breaks=10)
# Parametric 95% quantile estimates range from 92 to 111!
# But the best fitting distributions all lie aroud 103.
# compare General Pareto Fitting methods
# Theoretically, the tails of distributions converge to GPD (General Pareto)
# q_gpd compares several R packages for fitting and quantile estimation:
dlq <- distLquantile(annMax, weight=FALSE, quiet=TRUE, probs=0.97, returnlist=TRUE)
dlq$quant
distLplot(dlq, qlines=TRUE) # per default best fitting distribution functions
distLplot(dlq, qlines=TRUE, qrow=c("wak","GPD*"), nbest=14)
#pdf("dummy.pdf", width=9)
distLplot(dlq, qlines=TRUE, qrow="GPD*", nbest=13, xlim=c(102,110),
qlinargs=list(lwd=3), qheights=seq(0.02, 0.005, len=14))
#dev.off()
## Not run:
# ## Taken out from CRAN package check because it's slow
#
# # weighted distribution quantiles are calculated by different weighting schemes:
# dlf <- distLfit(annMax)
# distLgofPlot(dlf, ranks=FALSE, weights=TRUE)
#
# # If speed is important and parameters are already available, pass them via dlf:
# distLquantile(dlf=dlf, probs=0:5/5, selection=c("wak","gev","kap"), order=FALSE)
# distLquantile(dlf=dlf, truncate=0.3, returnlist=TRUE)$truncate
#
# # censored (truncated, trimmed) quantile, Peak Over Treshold (POT) method:
# qwak <- distLquantile(annMax, sel="wak", prob=0.95, plot=TRUE, ylim=c(0,0.06), emp=FALSE)
# qwak2 <-distLquantile(annMax, sel="wak", prob=0.95, truncate=0.6, plot=TRUE,
# addinfo=FALSE, add=TRUE, coldist="blue", empirical=FALSE)
#
#
# # Simulation of truncation effect
# library(lmomco)
# #set.seed(42)
# rnum <- rlmomco(n=1e3, para=dlf$parameter$gev)
# myprobs <- c(0.9, 0.95, 0.99, 0.999)
# mytrunc <- seq(0, 0.9, length.out=20)
# trunceffect <- sapply(mytrunc, function(mt) distLquantile(rnum, selection="gev",
# probs=myprobs, truncate=mt, plot=FALSE, quiet=TRUE,
# progbars=FALSE, empirical=FALSE)["gev",])
# # If more values are truncated, the function runs faster
#
# op <- par(mfrow=c(2,1), mar=c(2,4.5,2,0.5), cex.main=1)
# distLquantile(rnum, sel="gev", probs=myprobs, emp=FALSE, ylab="", xlab="", plot=TRUE)
# distLquantile(rnum, sel="gev", probs=myprobs, emp=FALSE, addinfo=FALSE,
# truncate=0.3, add=TRUE, coldist=4, plot=TRUE)
# legend("right", c("fitted GEV", "fitted with truncate=0.3"), lty=1, col=c(2,4),
# bg="white")
# par(mar=c(3,4.5,3,0.5))
# plot(mytrunc, trunceffect[1,], ylim=range(trunceffect), las=1, type="l",
# main=c("High quantiles of 1000 random numbers from gev distribution",
# "Estimation based on proportion of lower values truncated"),
# xlab="", ylab="parametrical quantile")
# title(xlab="Proportion censored", mgp=c(1.8,1,0))
# for(i in 2:4) lines(mytrunc, trunceffect[i,])
# library("berryFunctions")
# textField(rep(0.5,4), trunceffect[,11], paste0("Q",myprobs*100,"%") )
# par(op)
#
# trunc <- seq(0,0.1,len=200)
# dd <- pbsapply(trunc, function(t) distLquantile(annMax,
# selection="gpa", weight=FALSE, truncate=t, prob=0.99, quiet=T)[c(1,3),])
# lines(trunc, dd[2,], type="o", col=2)
#
#
# set.seed(3); rnum <- rlmomco(n=1e3, para=dlf$parameter$gpa)
# qd99 <- evir::quant(rnum, p=0.99, start=15, end=1000, ci=0.5, models=30)
# axis(3, at=seq(-1000,0, length=6), labels=0:5/5, pos=par("usr")[3])
# title(xlab="Proportion truncated", line=-3)
# mytrunc <- seq(0, 0.9, length.out=30)
# trunceffect <- sapply(mytrunc, function(mt) distLquantile(rnum, selection="gpa",
# probs=0.99, truncate=mt, plot=FALSE, quiet=TRUE,
# empirical=FALSE, gpd=TRUE))
# lines(-1000*(1-mytrunc), trunceffect[1,], col=4)
# lines(-1000*(1-mytrunc), trunceffect[2,], col=3) # interesting...
# for(i in 3:13) lines(-1000*(1-mytrunc), trunceffect[i,], col=3) # interesting...
#
# # If you want the estimates only for one single truncation, use
# q_gpd(rnum, probs=myprobs, truncate=0.5)
#
# ## End(Not run) # end dontrun
Run the code above in your browser using DataLab