I'm trying to analyse data with no events (eyes closed, EEG) and I'm
trying to segment the data series into 10sec segments (named epochs in
my references). I tried the Epochs method but it requires events and I
can't find any other methods doing this.
Is there any way to do this in mne? And if not, is there a way to
convert the data to the epoch-object from SciPy or will I have to do it
all in SciPy?
However, keep in mind that private functions (those that start with `_`)
are not recommended for public use, as they can change behavior or be
removed at any time without the changes being documented or going through a
deprecation cycle. So it is safer to use the public function
`make_fixed_length_events` to make events, and pass those the events to the
`Epochs` constructor.
Right, but if you are using make_fixed_length_events + Epochs, remember to
set baseline=None, otherwise every first sample of your epochs will be zero.