-
I'm trying to process some EMG data. I'm really not sure what I'm doing wrong or why these functions don't work with my data. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 12 replies
-
Hi @ijhua, could you try passing your cleaned signal through So perhaps something like:
|
Beta Was this translation helpful? Give feedback.
-
Thanks for sharing this! What's the sampling rate of your data? Do you also happen to have the raw data but without the default filters implemented during recording? |
Beta Was this translation helpful? Give feedback.
-
I tried running
Could you see if this is what you expected? I managed to replicate the error and realized that DataError is due to the
And this is problematic for plotting which ideally requires For now, @ijhua you can run this short code to force the columns to be treated as float and plot them again:
|
Beta Was this translation helpful? Give feedback.
I tried running
signal_synchrony
on the data you provided and it seems alrightCould you see if this is what …