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
D:\a\NeuroKit\NeuroKit\neurokit2\ecg\ecg_delineate.py:1015: FutureWarning: The behavior of obj[i:j] with a float-dtype index is deprecated. In a future version, this will be treated as positional instead of label-based. For label-based slicing, use obj.loc[i:j] instead
segment = heartbeat[:0] # Select left hand side
So it would be good if someone could eventually look into the best way to address this warning
The text was updated successfully, but these errors were encountered:
danibene
changed the title
FutureWarning in log of failed docs check due to ecg_delineate
FutureWarning in log of failed docs build due to ecg_delineate
Sep 6, 2023
The docs build is currently failing: https://github.com/neuropsychology/NeuroKit/actions/runs/6081656167/job/16538141261?pr=863
And includes the following warning:
I thought this should be addressed by changing
heartbeat[:0]
toheartbeat.iloc[:0]
, but this led to a failing test:https://github.com/neuropsychology/NeuroKit/actions/runs/6098830607/job/16549573373
So it would be good if someone could eventually look into the best way to address this warning
The text was updated successfully, but these errors were encountered: