我正在使用带有一些时间序列数据的hts包。
我的结构如下:
A.......Z,ZA,ZB,ZC....ZN (28 Regions)
|
|
X Y (2 Products)
| |A.....Z, ZA....ZS (30 Product types)
|
A...Z,ZA...ZS (30 Product Types)
所以它的层次结构是28-2-30。
我试图使用hts包并用我的上一个系列创建一个bts。 但是,当我运行以下内容时:我收到一条错误消息。
y <- hts(bts,nodes=list(1,rep(1,21),rep(1,2),rep(1,30)))
Error: Error in if (nbts <= 1L) { : argument is of length zero
不知道它来自哪里,但我的问题是:
1. Given the structure, is it a valid candidate for hts?
2. Am I passing in the nodes correctly to hts? If not, can you please suggest what I am doing wrong?
我希望按月(201603)预测时间序列的最后值。
非常感谢任何意见。
谢谢, 乙