module coreforecast.differences
function num_diffs
x
(np.ndarray): Array with the time series.max_d
(int, optional): Maximum number of differences to consider. Defaults to 1.
int
: Optimal number of differences.
function num_seas_diffs
x
(np.ndarray): Array with the time series.season_length
(int): Length of the seasonal pattern.max_d
(int, optional): Maximum number of differences to consider. Defaults to 1.
int
: Optimal number of seasonal differences.
function diff
x
(np.ndarray): Array with the time series.d
(int): Lag to subtract
np.ndarray
: Differenced time series.
This file was automatically generated via lazydocs.