LOOquants {quantkriging} | R Documentation |
Revaluate Quantiles
Description
Generates Leave-One-Out predictions for each location and quantile.
Usage
LOOquants(QKResults)
Arguments
QKResults |
Output from the quantKrig function. |
Details
Returns the estimated quantiles and a plot of the leave-one-out predictions against the observed values.
Value
Leave-one-out predictions at the input locations
Examples
X <- seq(0,1,length.out = 20)
Y <- cos(5*X) + cos(X)
Xstar <- rep(X,each = 100)
Ystar <- rep(Y,each = 100)
e <- rchisq(length(Ystar),5)/5 - 1
Ystar <- Ystar + e
lb <- c(0.0001,0.0001)
ub <- c(10,10)
Qout <- quantKrig(Xstar,Ystar, seq(0.05,0.95, length.out = 7), lower = lb, upper = ub)
LOOquants(Qout)
[Package quantkriging version 0.1.0 Index]