Description Usage Arguments Value References Examples
This function benchmarks a list of timeseries against a set of temporal and/or contemporaneous constraints.
1 | jd_cholette_multivar(xlist,tcvector,ccvector,rho,lambda)
|
xlist |
list of named time series |
tcvector |
character vector of temporal constraints |
ccvector |
character vector of contemporaneous constraints |
rho |
auto-regressive parameter (def=1) |
lambda |
power of the weights applied to the series. 0 for additive, 0.5 for proportional, 1 for multiplicative (def=1) |
returns a list of benchmarked timeseries consistent with a given set of constraints
Info on JDemetra+, usage and functions :
http://ec.europa.eu/eurostat/cros/content/download_en
1 2 3 4 5 6 7 | mylist<-list()
for (i in 1:8) {mylist[[paste0("s",i)]]<- assign(paste0("s",i), jd_airline(60))}
temporal <-c("s8=sum(s7)")
contemporaneous <- c("s3=s1+s2","s6=s4+s5")
mylist_benchmarked<- jd_cholette_multivar(mylist,temporal,contemporaneous)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.