Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions tutorials/intro/20_events_from_raw.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,10 @@
# magnitudes. You can also see that every time there is a pulse on one of the
# other STIM channels, there is a corresponding pulse on ``STI 014``.
#
# .. TODO: somewhere in prev. section, link out to a table of which systems
# have STIM channels vs. which have marker files or embedded event arrays
# (once such a table has been created).
#
#
# For more information on which EEG/MEG systems use STIM channels, marker files,
# or embedded arrays, see the MEG and EEG tutorials:
# :doc:`/auto_tutorials/io/10_reading_meg_data` and
# :doc:`/auto_tutorials/io/20_reading_eeg_data`.
# Converting a STIM channel signal to an Events array
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#
Expand All @@ -120,7 +119,7 @@
# from which to read events:

events = mne.find_events(raw, stim_channel="STI 014")
print(events[:5]) # show the first 5
print(events[:5]) # Display the first 5 events to check the STIM channel extraction

# %%
# .. admonition:: The middle column of the Events array
Expand Down