NeuroKit icon indicating copy to clipboard operation
NeuroKit copied to clipboard

download_mit_normal.py - error in data and rpeaks extraction

Open HotDog702 opened this issue 5 months ago • 0 comments

line 46-47:

    # Select only 1h of recording (otherwise it's too big)
    data = data[460800:460800*3].reset_index(drop=True)
    anno = anno[(anno["Rpeaks"] > 460800) & (anno["Rpeaks"] <= 460800*2)].reset_index(drop=True)

data - extracted 2 hours anno - only one hour

HotDog702 avatar Jan 29 '24 09:01 HotDog702