Not setting metadata
Not setting metadata
10 matching events found
Setting baseline interval to [-0.2, 0.0] sec
Applying baseline correction (mode: mean)
Created an SSP operator (subspace dimension = 1)
1 projection items activated
Loading data for 10 events and 113 original time points …
1 bad epochs dropped
(64, 113)
(64, 113)
(64, 113)
(64, 113)
(64, 113)
(64, 113)
(64, 113)
(64, 113)
(64, 113)
I thought that changing the duration in mne.make_fixed_length_events will change the second shape of epoch (113) but no matter what I do this shape stays always the same. Why is this happening and how to set up it right?
I try to split my resting state signal from 64 electrodes to equal epochs and from that epochs, I want to access individual channels/electrodes to perform analysis on them.
In the above solution, I had still some cuts because of baseline calculations for epochs. Is there a method to avoid using baseline while creating epochs? I tried like epochs = mne.Epochs(data, events,tmin=0.0,tmax=Event_duration,baseline=(None, None)) but it gives information that Applying baseline correction (mode: mean). Any hint on how to avoid applying baseline?
Basically, I need to spit rest into chunks and I don’t want to go outside the mne pipeline like doing eg. raw.get_data() - > numpy split.