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
When I run heartpy.process with the reject_segmentwise set to True, it doesn't make any difference in the output (doesn't do what it is supposed to do). I was able to track it down and the issue seems to be inside the "process" function when the "check_peaks" function is being called. It is currently as:
The text was updated successfully, but these errors were encountered:
atazarv
changed the title
issue with feature extraction when reject_segmentwise=True
issue with reject_segmentwise inside "process" function
Apr 7, 2022
atazarv
changed the title
issue with reject_segmentwise inside "process" function
issue with reject_segmentwise argument inside "process" function
Apr 7, 2022
atazarv
changed the title
issue with reject_segmentwise argument inside "process" function
issue with reject_segmentwise argument inside "hp.process" function
Apr 7, 2022
When I run heartpy.process with the reject_segmentwise set to True, it doesn't make any difference in the output (doesn't do what it is supposed to do). I was able to track it down and the issue seems to be inside the "process" function when the "check_peaks" function is being called. It is currently as:
working_data = check_peaks(working_data['RR_list'], working_data['peaklist'], working_data['ybeat'], reject_segmentwise, working_data=working_data)
and it should be changed to:
working_data = check_peaks(working_data['RR_list'], working_data['peaklist'], working_data['ybeat'], reject_segmentwise=reject_segmentwise, working_data=working_data)
I'm using Python 3.7 with Heartpy version 1.2.6.
The text was updated successfully, but these errors were encountered: