Changes between Version 16 and Version 17 of udg/ecoms/RPackage/examples/continentalSelection
- Timestamp:
- Sep 4, 2014 12:40:51 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
udg/ecoms/RPackage/examples/continentalSelection
v16 v17 5 5 {{{ 6 6 #!text/R 7 > ex2 <- loadECOMS(dataset = "CFSv2_seasonal_16", var = "tasmin", members = 1:2, lonLim = c(-15,35), latLim = c(32, 75), season = c(12,1,2), years = 2001:2010, leadMonth = 3, time = "DD") 7 ex2 <- loadECOMS(dataset = "CFSv2_seasonal_16", var = "tasmin", members = 1:2, lonLim = c(-15,35), latLim = c(32, 75), season = c(12,1,2), years = 2001:2010, leadMonth = 3, time = "DD") 8 }}} 9 10 Returns the following on-screen messages: 11 12 {{{ 8 13 [2014-09-02 16:45:58] Defining homogeneization parameters for variable "tasmin" 9 14 NOTE: daily minimum will be calculated from the 6-h model output … … 12 17 [2014-09-02 16:46:03] Retrieving data subset ... 13 18 [2014-09-02 16:52:57] Done 14 > print(object.size(ex2), units = "Mb") 15 35 Mb 19 }}} 20 21 The size of the object is 35 Mb: 22 23 {{{#!text/R 24 print(object.size(ex2), units = "Mb") 16 25 }}} 17 26 … … 21 30 #!text/R 22 31 > str(ex2$Data) 32 }}} 33 34 {{{ 23 35 num [1:2, 1:902, 1:47, 1:54] 17.4 17.2 16.4 18.7 17.4 ... 24 36 - attr(*, "dimensions")= chr [1:4] "member" "time" "lat" "lon" 25 37 }}} 26 38 27 Members can be plottede individually by setting `multimember = TRUE` in the `plotMeanField` function of the `downscaleR`package: 39 Members can be plotted individually by setting `multimember = TRUE` in the `plotMeanField` function of the `downscaleR`package: 40 28 41 29 42 {{{