Apply field significance method of Elmore et al. (2006).
spatbiasFS(X, Y, loc = NULL, block.length = NULL, alpha.boot = 0.05, field.sig = 0.05,
bootR = 1000, ntrials = 1000, verbose = FALSE)# S3 method for spatbiasFS
summary(object, ...)
# S3 method for spatbiasFS
plot(x, ...)
A list object with components:
character vector giving the name of the verification and forecast spatio-temporal fields used, and the associated location object (if not NULL).
object of class LocSig
list object containing information about the significance of the results.
field significance level and bootstrap CI level as input by field.sig alpha.boot arguments.
same as arguments above.
m by n matrices giving the verification and forecast fields, resp., for each of m time points (rows) and n locations (columns).
list object as returned by spatbiasFS
.
optional (for subsequent plotting) n by 2 matrix giving the lon/lat coordinates for the locations.
numeric giving the block length to be used n the block bootstrap algorithm. If NULL, floor(sqrt(n)) is used.
numeric between 0 and 1 giving the confidence level desired for the bootstrap algorithm.
numeric between 0 and 1 giving the desired field significance level.
numeric integer giving the number of bootstrap replications to use.
numeric integer giving the number of Monte Carol iterations to use.
logical, should progress information be printed to the screen?
not used.
Eric Gilleland and Kimberly L. Elmore
See Elmore et al. (2006) for details.
Elmore, K. L., Baldwin, M. E. and Schultz, D. M. (2006) Field significance revisited: Spatial bias errors in forecasts as applied to the Eta model. Mon. Wea. Rev., 134, 519--531.
MCdof
, LocSig
, tsboot
data(GFSNAMfcstEx)
data(GFSNAMobsEx)
data(GFSNAMlocEx)
id <- GFSNAMlocEx[,"Lon"] >=-95 & GFSNAMlocEx[,"Lon"] <= -75 & GFSNAMlocEx[,"Lat"] <= 32
loc <- GFSNAMlocEx[id,]
GFSobsSub <- GFSNAMobsEx[,id]
GFSfcstSub <- GFSNAMfcstEx[,id]
look <- spatbiasFS(GFSobsSub, GFSfcstSub, loc=loc, bootR=500, ntrials=500)
plot(look)
summary(look)
Run the code above in your browser using DataLab