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
Describe the bug
We currently use ETS and DLT forecaster for our timeseries forecasting. When we specify a dataframe with datetime column consisting of timezone aware datetime column. The root cause of the issue is with this line
The numpy.diff returns an array of integers of a naive datetime while it returns an array of TimeDelta object for timezone aware series. Hence its able to cast the diff to float for former and fail for the latter.
Any workaround to get over this issue is appreciated. Thank you!
To Reproduce
Steps to reproduce the behavior:
import pandas as pd
from orbit.utils.general import is_ordered_datetime
df_tz_aware = pd.date_range("2021-01-01", periods=5, freq="D", tz="UTC")
print(is_ordered_datetime(df_tz_aware))
Expected behavior
A clear and concise description of what you expected to happen.
The expected output for the above series is True , while the functions throws the below error
File "orbit_ets.py", line 37, in orbit_ets_forecast
).fit(historic_data_df)
File "python3.10/site-packages/orbit/forecaster/map.py", line 23, in fit
super().fit(df, **kwargs)
File "python3.10/site-packages/orbit/forecaster/forecaster.py", line 143, in fit
self._validate_training_df(df)
File "python3.10/site-packages/orbit/forecaster/forecaster.py", line 285, in _validate_training_df
if not is_ordered_datetime(date_array):
File "python3.10/site-packages/orbit/utils/general.py", line 18, in is_ordered_datetime
return np.all(np.diff(array).astype(float) > 0)
Screenshots
If applicable, add screenshots to help explain your problem.
Environment (please complete the following information):
OS: macOS
Python Version: 3.10.6
Versions of Major Dependencies (pandas, scikit-learn, cython): pandas:1.5.3, scikit-learn:1.1.3, orbit-ml:1.1.4.2
Additional context
An issue with Numpy was already raised, the determination was the cast to float for TimeDelta will not work as numpy is unaware of pandas types. numpy/numpy#26838
The text was updated successfully, but these errors were encountered:
Describe the bug
We currently use
ETS
andDLT
forecaster for our timeseries forecasting. When we specify a dataframe with datetime column consisting of timezone aware datetime column. The root cause of the issue is with this lineThe
numpy.diff
returns an array of integers of a naive datetime while it returns an array ofTimeDelta
object for timezone aware series. Hence its able to cast the diff to float for former and fail for the latter.Any workaround to get over this issue is appreciated. Thank you!
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
The expected output for the above series is
True
, while the functions throws the below errorScreenshots
If applicable, add screenshots to help explain your problem.
Environment (please complete the following information):
pandas
,scikit-learn
,cython
): pandas:1.5.3, scikit-learn:1.1.3, orbit-ml:1.1.4.2Additional context
An issue with Numpy was already raised, the determination was the cast to float for
TimeDelta
will not work asnumpy
is unaware of pandas types. numpy/numpy#26838The text was updated successfully, but these errors were encountered: