Description Usage Arguments Value Examples
The function is used to produce two lagged RasterStacks. The second is cut from the beginning, the first from the tail to ensure equal output lengths (provided that input lengths were equal).
1 |
x |
a RasterStack (to be cut from tail) |
y |
a RasterStack (to be cut from beginning) |
lag |
the desired lag (in the native frequency of the RasterStack) |
freq |
the frequency of the RasterStacks |
... |
currently not used |
a list with the two RasterStacks lagged by lag
1 2 3 4 5 6 7 | data(pacificSST)
data(australiaGPCP)
# lag GPCP by 4 months
lagged <- lagalize(pacificSST, australiaGPCP, lag = 4, freq = 12)
lagged[[1]][[1]] #check names to see date of layer
lagged[[2]][[1]] #check names to see date of layer
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.