Displaying 1 result from an estimated 1 matches for "pwat".
Did you mean:
pat
2006 Jul 14
0
EOF: object needs to be "field"?
...data, and it has 3 dimensions: x, y, and time. The following is my code
-------------------------------------------------------------------------------------------------------------------------
nx <- 349
ny <- 277
nt <- 312
nRunning <- 12
missing <- -900.
datain <- readBin("PWAT-mon.197901-200412.dat",what=numeric(),n=nx*ny*nt,size=4,endian="little")
datain[datain<missing] <- NA
data <- array(datain,c(nx,ny,nt))
library(clim.pact)
eof.c <- EOF(data,mon=1)
--------------------------------------------------------------------------------------------...