TS.acc {BLRPM} | R Documentation |
TS.acc
accumulates a given time series x
at a given accumulation level acc.val
. Minimum value
for acc.val is 2 [unit time]
TS.acc(x,acc.val)
x |
|
acc.val |
|
x.acc TS.acc
returns a vector
of an accumulated time series
Christoph Ritschel christoph.ritschel@met.fu-berlin.de
x <- rgamma(1000,1)
x.2 <- TS.acc(x,acc.val=2)