2

使用 R 中的预测包在时间序列上生成 tbats 函数,我获得了以下参数:

tbats(cluster1tbattrain)

TBATS(0, {1,0}, 1, {<52.1785714285714,4>})

Call: tbats(y = cluster1tbattrain)

Parameters
  Lambda: 0.000277
  Alpha: 0.0004483821
  Beta: 8.149e-07
  Damping Parameter: 1
  Gamma-1 Values: 6.500801e-08
  Gamma-2 Values: 1.250234e-07
  AR coefficients: 0.165745

Seed States:
              [,1]
 [1,]  1.377704557
 [2,] -0.001508431
 [3,] -0.119006816
 [4,]  0.021604901
 [5,]  0.040554704
 [6,] -0.013422482
 [7,] -0.031521559
 [8,]  0.015044923
 [9,] -0.041001689
[10,]  0.032026398
[11,]  0.000000000

Sigma: 0.1353452
AIC: 607.0256

如何将它们转换为 Yt=f(α,β,Yt-1,θ) 形式的数学函数,以便直接在 excel 上使用它们(例如)?

谢谢!

4

1 回答 1

0

你可能会看这个

require(forecast)
data(USAccDeaths)
fit <- tbats(USAccDeaths)
fit
write.csv(fit$seed.states, file = "examplefilename.csv")

然后检查examplefilename.csv在 Excel 中打开是否可以满足您的期望

于 2013-09-10T22:56:14.917 回答