Quick question about epochs

When you iterate over epochs (i.e. for e in epochs: ), what order do they
go in? Is it the chronological order that corresponds to epochs.events, or
are they grouped by type?

Thanks,
Alan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20140530/c6f000c1/attachment.html

Hi Alan,

it's chronological, following epochs.events[:, 2] --- column 3 of events
array.

HTH,
Denis

Great. Thanks!