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
Since pandas version 2.0.0: group_keys now defaults to True. By default group keys are not included when the result’s index (and column) labels match the inputs, but in this case, the result has MultiIndex([(0, '2021-06-21 08:00:40.888351917')...]), rather than DatetimeIndex(['2021-06-21 08:00:40.888351917',...]) of the input, so we need to specify group_keys=False.
The text was updated successfully, but these errors were encountered:
aeon_mecha/aeon/analysis/utils.py
Line 143 in 616155b
Since pandas version 2.0.0:
group_keys
now defaults toTrue
. By default group keys are not included when the result’s index (and column) labels match the inputs, but in this case, the result hasMultiIndex([(0, '2021-06-21 08:00:40.888351917')...])
, rather thanDatetimeIndex(['2021-06-21 08:00:40.888351917',...])
of the input, so we need to specifygroup_keys=False
.The text was updated successfully, but these errors were encountered: