Extract and Visualize Individual Heartbeats#

This example can be referenced by citing the package.

This example shows how to use NeuroKit to extract and visualize the QRS complexes (individual heartbeats) from an electrocardiogram (ECG).

# Load NeuroKit and other useful packages
import neurokit2 as nk
import numpy as np
import matplotlib.pyplot as plt

Extract the cleaned ECG signal#

In this example, we will use a simulated ECG signal. However, you can use any of your signal (for instance, extracted from the dataframe using the read_acqknowledge().

# Simulate 30 seconds of ECG Signal (recorded at 250 samples / second)
ecg_signal = nk.ecg_simulate(duration=30, sampling_rate=250)

Once you have a raw ECG signal in the shape of a vector (i.e., a one-dimensional array), or a list, you can use ecg_process() to process it.

Note: It is critical that you specify the correct sampling rate of your signal throughout many processing functions, as this allows NeuroKit to have a time reference.

# Automatically process the (raw) ECG signal
signals, info = nk.ecg_process(ecg_signal, sampling_rate=250)

This function outputs two elements, a dataframe containing the different signals (raw, cleaned, etc.) and a dictionary containing various additional information (peaks location, …).

Extract R-peaks location#

The processing function does two important things for our purpose: 1) it cleans the signal and 2) it detects the location of the R-peaks. Let’s extract these from the output.

# Extract clean ECG and R-peaks location
rpeaks = info["ECG_R_Peaks"]
cleaned_ecg = signals["ECG_Clean"]

Great. We can visualize the R-peaks location in the signal to make sure it got detected correctly by marking their location in the signal.

# Visualize R-peaks in ECG signal
plot = nk.events_plot(rpeaks, cleaned_ecg)
../../_images/61ad7564ab88c4a53dffd4970288b45847b1fa9bf3e0b94d3283713925078155.png

Once that we know where the R-peaks are located, we can create windows of signal around them (of a length of for instance 1 second, ranging from 400 ms before the R-peak), which we can refer to as epochs.

Segment the signal around the heart beats#

You can now epoch all these individual heart beats, synchronized by their R peaks with the ecg_segment() function.

# Plotting all the heart beats
epochs = nk.ecg_segment(cleaned_ecg, rpeaks=None, sampling_rate=250, show=True)
../../_images/eb473a9dee30b21a696e091b780b5bdae9f6a01b668eeca4993cf9293fc4da9e.png

This create a dictionary of dataframes for each ‘epoch’ (in this case, each heart beat).

Advanced Plotting#

This section is written for a more advanced purpose of plotting and visualizing all the heartbeats segments. The code below uses packages other than NeuroKit2 to manually set the colour gradient of the signals and to create a more interactive experience for the user - by hovering your cursor over each signal, an annotation of the signal corresponding to the heart beat index is shown.

Custom colors and legend#

Here, we define a function to create the epochs. It takes in cleaned as the cleaned signal dataframe, and peaks as the array of R-peaks locations.

# Define a function to create epochs
def extract_heartbeats(cleaned, peaks, sampling_rate=None): 
    heartbeats = nk.epochs_create(cleaned, 
                                  events=peaks, 
                                  epochs_start=-0.3, 
                                  epochs_end=0.4, 
                                  sampling_rate=sampling_rate)
    heartbeats = nk.epochs_to_df(heartbeats)
    return heartbeats
    
heartbeats = extract_heartbeats(cleaned_ecg, peaks=rpeaks, sampling_rate=250)
heartbeats.head()
Signal Index Label Time
0 -0.169209 144 1 -0.300000
1 -0.163639 145 1 -0.295977
2 -0.157951 146 1 -0.291954
3 -0.152093 147 1 -0.287931
4 -0.145987 148 1 -0.283908

We then pivot the dataframe so that each column corresponds to the signal values of one channel, or Label.

heartbeats_pivoted = heartbeats.pivot(index='Time', columns='Label', values='Signal')
heartbeats_pivoted.head()
Label 1 10 11 12 13 14 15 16 17 18 ... 31 32 33 34 4 5 6 7 8 9
Time
-0.300000 -0.169209 -0.131078 -0.144979 -0.133808 -0.127021 -0.124499 -0.132093 -0.144998 -0.126528 -0.128481 ... -0.133268 -0.128333 -0.109974 -0.172599 -0.112029 -0.141178 -0.133596 -0.132709 -0.124179 -0.138021
-0.295977 -0.163639 -0.129995 -0.143479 -0.133053 -0.126201 -0.123330 -0.130787 -0.144358 -0.125840 -0.127324 ... -0.132423 -0.127719 -0.109150 -0.171224 -0.111496 -0.140251 -0.132680 -0.132185 -0.123659 -0.137244
-0.291954 -0.157951 -0.128706 -0.141799 -0.132251 -0.125282 -0.122044 -0.129294 -0.143580 -0.125063 -0.126048 ... -0.131398 -0.126963 -0.108201 -0.169750 -0.110899 -0.139099 -0.131620 -0.131568 -0.123070 -0.136217
-0.287931 -0.152093 -0.127135 -0.139891 -0.131374 -0.124242 -0.120610 -0.127556 -0.142619 -0.124164 -0.124629 ... -0.130132 -0.126010 -0.107106 -0.168148 -0.110192 -0.137680 -0.130372 -0.130821 -0.122382 -0.134907
-0.283908 -0.145987 -0.125183 -0.137682 -0.130367 -0.123049 -0.118988 -0.125493 -0.141408 -0.123114 -0.123031 ... -0.128546 -0.124798 -0.105833 -0.166375 -0.109304 -0.135949 -0.128875 -0.129891 -0.121566 -0.133283

5 rows × 34 columns

# Prepare figure
fig, ax = plt.subplots()

ax.set_title("Individual Heart Beats")
ax.set_xlabel("Time (seconds)")

# Aesthetics
labels = list(heartbeats_pivoted)
labels = ['Channel ' + x for x in labels] # Set labels for each signal
cmap = iter(plt.cm.YlOrRd(np.linspace(0,1, int(heartbeats["Label"].nunique())))) # Get color map
lines = [] # Create empty list to contain the plot of each signal

for i, x, color in zip(labels, heartbeats_pivoted, cmap):
    line, = ax.plot(heartbeats_pivoted[x], label='%s' % i, color=color)
    lines.append(line)
../../_images/d10513a8655ea2102b0fc7c2c4b2db5a182afcfe467ea194ec6d1fe961361ee7.png

Interactivity#

This section of the code incorporates the aesthetics and interactivity of the plot produced. Unfortunately, the interactivity is not active in this example but it should work in your console! As you hover your cursor over each signal, annotation of the channel that produced it is shown. You will need to uncomment the code below.

Note: you need to install the mplcursors package for the interactive part (pip install mplcursors)

# # Import packages
# import ipywidgets as widgets
# from ipywidgets import interact, interact_manual

# import mplcursors

# # Obtain hover cursor
# mplcursors.cursor(lines, hover=True, highlight=True).connect("add", lambda sel: sel.annotation.set_text(sel.artist.get_label())) 
# # Return figure
# fig