Coder Social home page Coder Social logo

NeuroKit Warning: ecg_hrv(): Correlation Dimension. Error: NeuroKit warning: complexity_entropy_multiscale(): Signal might be to short to compute SampEn for scale factors > 0. Setting max_scale_factor to 0. about neurokit.py HOT 23 OPEN

neuropsychology avatar neuropsychology commented on May 17, 2024
NeuroKit Warning: ecg_hrv(): Correlation Dimension. Error: NeuroKit warning: complexity_entropy_multiscale(): Signal might be to short to compute SampEn for scale factors > 0. Setting max_scale_factor to 0.

from neurokit.py.

Comments (23)

DominiqueMakowski avatar DominiqueMakowski commented on May 17, 2024

Hi @Sanjay1995, could you provide an example of your dataset? We'll try to fix the error. It might be related to a recent change in HRV computation (#58). Also linking @gattia just in case :)

from neurokit.py.

Sanjay1995 avatar Sanjay1995 commented on May 17, 2024

my dataset is ptb ecg database. you can check it on https://www.physionet.org/physiobank/database/ptbdb/

from neurokit.py.

Sanjay1995 avatar Sanjay1995 commented on May 17, 2024

firstly you read the description. I want to know how to convert these twelve columns (i, ii, iii, avr, avl, avf, v1, v2, v3, v4, v5, v6) into features for classification of ecg using your library NeuroKit. It would be your thanks.

from neurokit.py.

Sanjay1995 avatar Sanjay1995 commented on May 17, 2024

@DominiqueMakowski

from neurokit.py.

gattia avatar gattia commented on May 17, 2024

Based on the print out it seems that the sample entropy is having problems on the very first pass at the full resolution scale for the multi-scale analysis (this should be the same as just running sample entropy on the full data). This shouldn't be a problem from anything done to the multiscale entropy function recently.

If I were debugging it, I'd be interested in what the data that is being passed to complexity_entropy_multiscale() looks like - whats it's shape, min, max values, how does it looked graphed out, etc.

from neurokit.py.

DominiqueMakowski avatar DominiqueMakowski commented on May 17, 2024

@Sanjay1995 As I understand it, you're basically trying to run the ECG processing routine on all of the ECG leads. However, the routine attempts, first, to extract R peaks, then computes several indices based on these R peaks (heart rate, HRV, and so on). The default cardiac complex segmenter works preferentially with LEAD 1 (i in your data). So I believe this is quite normal if it doesn't work with the other signals. It seems that you're trying to compute the same features based on different leads which are not appropriate for the traditional segmenting.

I am not sure what your end goal is, but neurokit's ecg routine currently preferentially works with LEAD 1 data (for extracting features then use them for whatever else), not comparing different leads between them. With that being said, you could use changing the default segmenter (ecg_segmenter = "hamilton", "gamboa", "engzee", "christov" or "ssf"). Critically, check if the R peaks were detected correctly. Also, try using "ecg_preprocess()" to simplify debugging.

I hope this was useful.
Let me know of your progress,

@gattia thanks :)

from neurokit.py.

Sanjay1995 avatar Sanjay1995 commented on May 17, 2024

screenshot from 2018-04-14 18-23-07

from neurokit.py.

Sanjay1995 avatar Sanjay1995 commented on May 17, 2024

this is how my one data column which I (i) as I mentioned above looks like

from neurokit.py.

Sanjay1995 avatar Sanjay1995 commented on May 17, 2024

@gattia

from neurokit.py.

Sanjay1995 avatar Sanjay1995 commented on May 17, 2024

thanks @DominiqueMakowski it is really useful, but tell me ecg_preprocess() and bio_process() works alike in my case?

from neurokit.py.

DominiqueMakowski avatar DominiqueMakowski commented on May 17, 2024

@Sanjay1995 yes bio_process is just a wrapper for processing multiple signals (ECG, EDA, EMG etc.) at once. Using bio-process with only ecg is similar to using ecg_process. However, ecg_process uses itself, the ecg_preprocess function that only does low level preprocessing (mainly extracting R peaks and not computing more complex indices such as HRV for example).

from neurokit.py.

Sanjay1995 avatar Sanjay1995 commented on May 17, 2024

as I have already mentioned you that I am using dataset of PTB ecg dataset, and your library also inculcates it. But ecg_preprocess() also fails on some signals giving error (index 0 is out of bounds for axis 0) don't know why.

from neurokit.py.

Sanjay1995 avatar Sanjay1995 commented on May 17, 2024

If I only process LEAD 1 (i in my data), then would it give features which ('T_Waves', 'Cardiac_Cycles', 'P_Waves', 'Q_Waves', 'HRV', 'R_Peaks') helps me in classification of heart disease class.

from neurokit.py.

DominiqueMakowski avatar DominiqueMakowski commented on May 17, 2024

yes, you should use only the column of the dataset corresponding to i. I used the full PTB dataset only to create a machine learning model that automatically classifies the provided lead signal and returns the probability of correct classification (a proxy of signal quality). But for investigating ECG features using only LEAD I is sufficient.

from neurokit.py.

Sanjay1995 avatar Sanjay1995 commented on May 17, 2024

@DominiqueMakowski thanks.

from neurokit.py.

waleedkaimkhani avatar waleedkaimkhani commented on May 17, 2024

@DominiqueMakowski I am getting same error ecg_process index 0 is out of bound error but I have the signal of length greater than 1

from neurokit.py.

DominiqueMakowski avatar DominiqueMakowski commented on May 17, 2024

@waleedkaimkhani could you provide a sample of your data? thanks

from neurokit.py.

waleedkaimkhani avatar waleedkaimkhani commented on May 17, 2024

my dataset is ptb ecg database. you can check it on https://www.physionet.org/physiobank/database/ptbdb/

from neurokit.py.

DominiqueMakowski avatar DominiqueMakowski commented on May 17, 2024

haha alright;

  1. did you select correctly a one dimensional array OR one pandas' dataframe column (corresponding to LEAD 1)?
  2. if yes, could you save (in txt, csv or json) this unique column or array and attach it here so I can check directly with the exact input you provide to neurokit's routines? Thanks 😅

from neurokit.py.

waleedkaimkhani avatar waleedkaimkhani commented on May 17, 2024

screenshot from 2018-04-14 22 35 00

from neurokit.py.

DominiqueMakowski avatar DominiqueMakowski commented on May 17, 2024

or send it to me [email protected]

from neurokit.py.

waleedkaimkhani avatar waleedkaimkhani commented on May 17, 2024

@DominiqueMakowski i have sent you mail

from neurokit.py.

DominiqueMakowski avatar DominiqueMakowski commented on May 17, 2024

@waleedkaimkhani your code should look like that

import neurokit as nk
import pandas as pd

df = pd.read_csv("file.csv")
ecg_processed = nk.ecg_process(ecg=df["i"], sampling_rate=1000)

from neurokit.py.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.