Changes between Version 50 and Version 51 of udg/ecoms/RPackage
- Timestamp:
- Oct 8, 2014 1:39:01 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
udg/ecoms/RPackage
v50 v51 19 19 The following panels show an illustrative use of ECOMS-UDG to obtain the minimum DJF temperature DJF bias for System4 hindcast (one-month lead time) over Europe. WFDEI is used as reference. 20 20 ||= R code =||= Output =|| 21 {{{#!td 22 {{{ 21 {{{#!td 22 {{{#!text/R 23 23 obs <- loadECOMS(dataset = "WFDEI", 24 24 var = "tasmin", 25 25 season = c(12,1,2)) 26 prd <- loadECOMS(dataset = ”System4_seasonal_15",26 prd <- loadECOMS(dataset = ”System4_seasonal_15", 27 27 var = "tasmin”, 28 28 season = c(12,1,2), … … 30 30 leadMonth = 1) 31 31 }}} 32 {{{ 32 {{{#!text/R 33 33 obsr <- interpGridData(gridData = obs, 34 34 new.grid = getGrid(prd), 35 35 method = "bilinear") 36 bias <-getBias(obsr,prd); plotMeanField(bias)36 bias <- getBias(obsr,prd); plotMeanField(bias) 37 37 }}} 38 38 }}}