Changes between Version 14 and Version 15 of udg/ecoms/RPackage/examples/drift
- Timestamp:
- May 13, 2016 2:58:49 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
udg/ecoms/RPackage/examples/drift
v14 v15 63 63 {{{#!text/R 64 64 # The library sp needs to be installed to do this example: 65 require(sp)65 if (!require(sp)) install.packages(sp) 66 66 # Matrix of anomalies between lead month and reference 67 67 aux.mat <- sapply(1:length(cfs.list), function(i) {apply(cfs.list[[i]]$Data, MARGIN = c(3,2), FUN = mean, na.rm = TRUE) - ref.field})