【问题标题】:What does a constant with linear trend (‘ct’) line look like?具有线性趋势 (‘ct’) 线的常数是什么样的?
【发布时间】:2019-05-29 21:54:54
【问题描述】:

在SARIMA模型中,可以指定趋势参数:

  • 'n'表示没有趋势;
  • 'c'表示常量;
  • 't'表示随时间呈线性趋势;
  • 'ct'表示一个具有线性趋势的常数。

前三个非常简单,但是具有线性趋势的常数是什么样的?

【问题讨论】:

标签: time-series statsmodels arima


【解决方案1】:

基本上它是一个线性趋势,其中截距不为零。以下是一些趋势示例:

  • c:trend = constant,其中“constant”值类似于“10”或“1.2345”
  • t:trend = t,其中 t 为观察次数,t = 1, 2, 3, ...
  • ct:trend = constant + t,其中“constant”值类似于“10”或“1.2345”,t 为观测数,t = 1, 2, 3, ...李>

最后,在nc 的情况下,趋势 = 0

【讨论】:

  • 所以't'就像y = ax,其中a不等于0,'ct'就像y = ax + b,其中a和b都不等于0?
猜你喜欢
  • 2022-01-14
  • 1970-01-01
  • 2012-03-07
  • 2020-08-10
  • 2019-03-19
  • 1970-01-01
  • 2022-09-30
  • 1970-01-01
  • 2016-09-10
相关资源
最近更新 更多