<p><span style="padding: 3px 10px; border-radius: 5px; color: #ffffff; font-weight: bold; display: inline-block; background-color: #ff0000;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;External Email - Use Caution&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></p><p></p><div>I don't think there's an easy / built-in way to do this in MNE-Python.&nbsp; Do the 3 events always occur in a predictable order?&nbsp; If so, I would write a function that takes in the original event array, finds occurrences of the "middle" event, looks before and after for the other events, and uses the sample numbers (in the first column of the events array) to determine how long before/after the middle event the epoch needs to be in order to include all 3.&nbsp; Then look across all epochs and pick the minimum "before time" and maximum "after time" to yield an epoch duration that is guaranteed to include all 3 events for *all* epochs (add some extra "padding" time if you want to prevent the events from ending up at the  edges of the epoch).&nbsp; With those 2 numbers in hand as your `tmin` and `tmax`, you can epoch around the middle event and be sure that you'll always have the earlier and later event included.<br></div><div><br></div><div class="protonmail_signature_block"><div class="protonmail_signature_block-user"><div>-- dan<br></div><div>Daniel McCloy<br></div><div>https://dan.mccloy.info<br></div><div>Research Scientist<br></div><div>Institute for Learning and Brain Sciences<br></div><div>University of Washington<br></div></div><div class="protonmail_signature_block-proton protonmail_signature_block-empty"><br></div></div><div><br></div><div>‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐<br></div><div> On Thursday, January 28, 2021 7:21 PM, Bruno Mansur &lt;brunommansur@gmail.com&gt; wrote:<br></div><div> <br></div><blockquote class="protonmail_quote" type="cite"><p><span style="background-color:rgb(255, 0, 0)"><span style="color:rgb(255, 255, 255)"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;External Email - Use Caution&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></span></span><br></p><p><br></p><div dir="ltr"><p dir="ltr">Dear list members,<br></p><p dir="ltr">I have the following event dictionary:<br></p><pre dir="ltr"><code dir="ltr">event_dict = {<span>'False'</span>: <span>1</span>, <span>'Hit'</span>: <span>2</span>, <span>'MP1'</span>: <span>3</span>, <span>'MP2'</span>: <span>4</span>, <span>'MP3'</span>: <span>5</span>,
              <span>'M_False'</span>: <span>6</span>, <span>'M_Hit'</span>: <span>7</span>, <span>'OGT'</span>: <span>8</span>, <span>'PMC'</span>: <span>9</span>, <span>'S  4'</span>: <span>10</span>,
              <span>'actiCAP Data On'</span>: <span>11</span>, <span>'boundary'</span>: <span>12</span>}
</code><br></pre><p dir="ltr">and I want to create epochs that <b>contain three events</b> (‘Hit’: 2, '‘M_Hit’: 7, ‘OGT’: 8). <b>All three events should be contained in the same Epoch.</b><br></p><p dir="ltr">So I first epoch my data passing the entire event_dict:<br></p><pre dir="ltr"><code dir="ltr">epochs = mne.Epochs(raw_bandpass_ica, events, event_id=event_dict,
                    tmin=<span>-0.2</span>, tmax=<span>6</span>, reject=reject_criteria, preload=<span>True</span>)
</code><br></pre><p dir="ltr">And then, in order to create my desired epoch, I tried this:<br></p><pre dir="ltr"><code dir="ltr">OGT = mne.pick_events(events, include=[<span>8</span>, <span>2</span>, <span>7</span>])
epochs[<span>'OGT'</span>].plot(events=OGT, event_id=event_dict,
                   event_color=dict(OGT=<span>'red'</span>, Hit=<span>'blue'</span>, M_Hit=<span>'green'</span>))
</code><br></pre><p dir="ltr">However, the output I got was Epochs containing some of the three events and not all at the same time.<br></p><p dir="ltr">Do you know how could I define Epochs containing concomitant events?<br></p><p dir="ltr">I would appreciate any help<br></p><p dir="ltr">Best regards,<br></p><p dir="ltr">Bruno<br></p></div></blockquote><div><br></div>