Clemens Brunner

Results 317 comments of Clemens Brunner

Hi Arno! We have just added support for this in #11000, did you already try this with the latest dev version and `eeglabio` 0.0.2?

I just tried with the latest main, but the problem still exists (I get the warning). In addition, I cannot read the exported file because of the following error: ```...

Thanks @jackz314! @arnodelorme please report back if you find out what the problem was. If the latencies exceed the signal duration, issuing a warning is the expected behavior. I'm a...

Can you open and view your file with [EDFbrowser](https://www.teuniz.net/edfbrowser/) to verify that it's not the data?

If it looks the same in EDFbrowser, then yes, something's wrong with your data and not with our import or plotting functions.

Could we collapse code like the one you show by default? That way, non-essential code (which is needed to create toy data etc. but not to do statistics) would be...

I actually really like this tutorial. It uses abstract data to make the points for sure, but it allows us to visually show what we're talking about. With real data...

Maybe something like: the blob visualized in 2D corresponds to EEG channels? I don't even know if that's true TBH, but something along those lines.

Why do you want to decimate raw (continuous) data without an anti-alias filter? Do you take care of that yourself? You can resample with `raw.resample()`, which does apply a suitable...

You can always grab the continuous data with `raw.get_data()` and then decimate the NumPy array yourself. Would that work?