Thanks again for your response,
Sorry this may be a novice question - how would I do this? Do you mean I should redo epoch creation from the raw object?
I wasn’t very clear in explaining my objects. For brevity and to compare with the single condition evoked object from the whitening image, I showed only one of the epochs objects. But in my scripts, I have both epochs objects and an epochsList. The epochsList, which I used for the covariance, is a list and looks like this:
In [10]: epochsList
Out[10]:
[<EpochsFIF | 35 events (all good), -0.1 - 0.7 sec, baseline -0.1 – 0 sec, ~74.1 MB, data loaded,
‘5’: 35>,
<EpochsFIF | 38 events (all good), -0.1 - 0.7 sec, baseline -0.1 – 0 sec, ~80.0 MB, data loaded,
‘2’: 38>,
<EpochsFIF | 45 events (all good), -0.1 - 0.7 sec, baseline -0.1 – 0 sec, ~93.8 MB, data loaded,
‘3’: 45>,
<EpochsFIF | 74 events (all good), -0.1 - 0.7 sec, baseline -0.1 – 0 sec, ~150.9 MB, data loaded,
‘6’: 36
‘2’: 38>,
<EpochsFIF | 179 events (all good), -0.1 - 0.7 sec, baseline -0.1 – 0 sec, ~357.5 MB, data loaded,
‘1’: 179>,
<EpochsFIF | 80 events (all good), -0.1 - 0.7 sec, baseline -0.1 – 0 sec, ~162.7 MB, data loaded,
‘3’: 45
‘5’: 35>,
<EpochsFIF | 36 events (all good), -0.1 - 0.7 sec, baseline -0.1 – 0 sec, ~76.1 MB, data loaded,
It seems this list contains epochs with a baseline! So I guess I was wrong looking at the message generated when epochs are read and not the actual object. I still need to figure out why my evoked object shows baseline off, because that is what I’m actually using for the source analysis (stc) later.
(I will also clean up my epochsList, because it contains epochs for event 5, epochs for event 3, and a combination epochs for events 3 and 5 (and similar for 2,6) So the true number of epochs will be 333 instead of 487. This is due to an error in the way the epochs files are found and read.)
Megan