pyeeg icon indicating copy to clipboard operation
pyeeg copied to clipboard

Python + EEG/MEG = PyEEG

Results 13 pyeeg issues
Sort by recently updated
recently updated
newest added

Hello! I think there is a bug in the last line causing an error in pfd calculation, it should be numpy.log10(n / (n+0.4*N_delta)). Pls let me know if I made...

Hi, I received the following error when testing after installation: $python setup.py test running test running egg_info writing pyeeg.egg-info/PKG-INFO writing dependency_links to pyeeg.egg-info/dependency_links.txt writing requirements to pyeeg.egg-info/requires.txt writing top-level names...

Hi, i`m using python 3.5 and there is error when installing under home directory. Using GIT Bash and python 3.5. Thanks

Code of fisher information https://github.com/forrestbao/pyeeg/blob/master/pyeeg/fisher_info.py#L32-L37 and svd entropy https://github.com/forrestbao/pyeeg/blob/master/pyeeg/entropy.py#L269-L274 is identical.

Hi, first thanks a lot for this valuable module that you provide and make it available for us secondary, would you please help me by answering my question. this is...

Call of spectral_entropy function did not recognize bin_power, as it isnot included from spectrum.py.

@DominiqueMakowski called my attention to a discrepancy between this implementation of the sample entropy and my implementation in [nolds](https://github.com/CSchoel/nolds) in this issue: [neuropsychology/NeuroKit#53](https://github.com/neuropsychology/NeuroKit/issues/53) . I think there is a small...

Hello, first thank you for this module! For the calculation of Hjorth mobility and complexity, I got NaN returned. It was because I was working with big numbers, TP has...

``` python from numpy import cumsum, log, polyfit, sqrt, std, subtract from numpy.random import randn def hurst(ts): """Returns the Hurst Exponent of the time series vector ts""" # Create the...