paulvangentcom / heartrate_analysis_python

Python Heart Rate Analysis Package, for both PPG and ECG signals
MIT License
930 stars 321 forks source link

Comparison of Raw vs Clean signal? #69

Closed darpitdavetamu closed 3 years ago

darpitdavetamu commented 3 years ago

I am using HeartPy to extract features from ECG signal using heartpy.process function.

I wanted to graphically compare the raw signal vs the processed signal (output of process function) that is used for peak detection.

Where can I find this output stored?

paulvangentcom commented 3 years ago

the process function outputs detected RR-peaks and metrics.

The signal used is buffered in working_data['hr'], assuming you run the process function as wd, m = hp.process(...)

cheers