Replies: 1 comment 1 reply
-
I think PyOD may not be a perfect choice for time-series since it does not handle the time stamps. what about https://github.com/datamllab/tods? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have segments of EEG data as 19 epochs:
For ith epoch, epoch[i][0] is the data and epoch [i][1] is the time. So,
is the data from five EEG channels corresponding to time array
I want to run a for loop 19 times in which I perform outlier detection on each epoch. I am new to this, so I simply tried the first method recommended on the documentation:
However, I get the error:
Reshape your data either using array.reshape(-1, 1) if your data has a single feature or array.reshape(1, -1) if it contains a single sample.
I wanted to know how can I pass my data to clf.fit(). Also, is there a particular method (other than ECOD) that one would recommend for EEG outlier detection?
Beta Was this translation helpful? Give feedback.
All reactions