object SARIMA
Companion object for class SARIMA
. Includes features related to differencing
and automated order selection.
- See also
www.jstatsoft.org/article/view/v027i03/v27i03.pdf
- Alphabetic
- By Inheritance
- SARIMA
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
def
difference(y: VectoD, d: Int, dd: Int, period: Int): (VectoD, VectoD)
Difference the time series.
Difference the time series. Return both the completely differenced time series and the intermediate (differenced once) time series (needed to scale back results later).
- y
the time series to be differenced
- d
the order of simple differencing
- dd
the order of seasonal differencing
- period
the seasonal period
-
def
differenceSeason(y_: VectoD, dd: Int, period: Int): VectoD
Difference for seasonality.
Difference for seasonality.
- y_
the time series to be seasonally differenced, this is usually the intermediate result after simple differencing.
- dd
the order of seasonal differencing
- period
the seasonal period
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
transformBack(xp: VectoD, x_: VectoD, y: VectoD, d: Int, dd: Int, period: Int): VectoD
Transform the fitted values on the training data of a differenced time series back to the original scale.
Transform the fitted values on the training data of a differenced time series back to the original scale.
- xp
the vector of predictions/fitted values of a differenced time series
- x_
the intermediate result after differencing for trend, but before differencing for seasonality
- y
the original time series
- d
the order of simple differencing
- dd
the order of seasonal differencing
- period
the seasonal period
- See also
stats.stackexchange.com/questions/32634/difference-time-series-before-arima-or-within-arima
-
def
transformBackF(xf: VectoD, x_: VectoD, xx: VectoD, d: Int, dd: Int, period: Int, t: Int): VectoD
Transform the forecast values of a differenced time series back to the original scale.
Transform the forecast values of a differenced time series back to the original scale.
- xf
the vector of forecasted values of a differenced time series
- x_
the intermediate result after differencing for trend, but before differencing for seasonality
- xx
the original zero-mean time series
- d
the order of simple differencing
- dd
the order of seasonal differencing
- period
the seasonal period
- t
the time being forecasted (@see the 'forecast' method)
- See also
stats.stackexchange.com/questions/32634/difference-time-series-before-arima-or-within-arima
-
def
transformBackFSeason(xf: VectoD, x_: VectoD, dd: Int, period: Int, t: Int): VectoD
Transform the forecast values of a differenced time series back to the original scale.
Transform the forecast values of a differenced time series back to the original scale. Undo seasonal differencing only.
- xf
the vector of forecasted values of a differenced time series
- x_
the intermediate result after differencing for trend, but before differencing for seasonality
- dd
the order of seasonal differencing
- period
the seasonal period
- t
the time point being forecasted (@see the 'forecast' method)
- See also
stats.stackexchange.com/questions/32634/difference-time-series-before-arima-or-within-arima
-
def
transformBackSeason(xp: VectoD, x_: VectoD, dd: Int, period: Int): VectoD
Transform the fitted values on the training data of a differenced time series back to the original scale.
Transform the fitted values on the training data of a differenced time series back to the original scale. Undo seasonal differencing only.
- xp
the vector of predictions/fitted values of a differenced time series
- x_
the intermediate result after differencing for trend, but before differencing for seasonality
- dd
the order of seasonal differencing
- period
the seasonal period
- See also
stats.stackexchange.com/questions/32634/difference-time-series-before-arima-or-within-arima
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated
- Deprecated