tachybradycardia module

tachybradycardia.bradycardia(hrinst, lowerthresh)[source]

This module determines when in the ECG data there is bradycardia

Parameters:
  • hrinst – (ndarray) instantaneous heart rate- used to determine when bradycardia occurred in ECG trace
  • lowerthresh – (int or double) lower threshold for determining bradycardia- user input or default 60 bpm
Returns:

brady: (ndarray) 1 for bradycardia, 0 otherwise

tachybradycardia.tachycardia(hrinst, upperthresh)[source]

This module determines when in the ECG data there is tachycardia

Parameters:
  • hrinst – (ndarray) instantaneous heart rate- used to determine when tachycardia occurred in ECG trace
  • upperthresh – (int or double) upper threshold for determining tachycardia- user input or default 100 bpm
Returns:

tachy: (ndarray) 1 for tachycardia, 0 otherwise