You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, in the STLDecomposer,get_trend_dataframe() returns list(pd.DataFrame) for single series and dict(list(pd.DataFrame) for multiseries where each key in the dictionary maps to a list that has a single dataframe that holds the signal, trend, seasonality and residual. In both cases the list only holds a single dataframe in order to stay consistent with the get_trend_dataframe() function in the PolynomialDecomposer which is not yet extended to support multiseries and returns a list with a single dataframe for single series and a list with multiple dataframes for multiseries.
The text was updated successfully, but these errors were encountered:
Currently, in the
STLDecomposer
,get_trend_dataframe()
returnslist(pd.DataFrame)
for single series anddict(list(pd.DataFrame)
for multiseries where each key in the dictionary maps to a list that has a single dataframe that holds the signal, trend, seasonality and residual. In both cases the list only holds a single dataframe in order to stay consistent with theget_trend_dataframe()
function in thePolynomialDecomposer
which is not yet extended to support multiseries and returns a list with a single dataframe for single series and a list with multiple dataframes for multiseries.The text was updated successfully, but these errors were encountered: