Skip to content

Commit

Permalink
Move table
Browse files Browse the repository at this point in the history
  • Loading branch information
hoechenberger committed May 17, 2024
1 parent d02e905 commit 9e7225b
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions tutorials/intro/70_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,33 +38,6 @@
subjects_dir = data_path / "subjects"

# %%
# Before getting started with :class:`mne.Report`, make sure the files you want
# to render follow the filename conventions defined by MNE:
#
# .. cssclass:: table-bordered
# .. rst-class:: midvalign
#
# =================================== =========================================
# Data object Filename convention (ends with)
# =================================== =========================================
# `~mne.io.Raw` ``-raw.fif(.gz)``, ``-raw_sss.fif(.gz)``,
# ``-raw_tsss.fif(.gz)``,
# ``_meg.fif(.gz)``, ``_eeg.fif(.gz)``,
# ``_ieeg.fif(.gz)``
# events ``-eve.fif(.gz)``
# `~mne.Epochs` ``-epo.fif(.gz)``
# `~mne.Evoked` ``-ave.fif(.gz)``
# `~mne.Covariance` ``-cov.fif(.gz)``
# `~mne.Projection` ``-proj.fif(.gz)``
# `~mne.transforms.Transform` ``-trans.fif(.gz)``
# `~mne.Forward` ``-fwd.fif(.gz)``
# `~mne.minimum_norm.InverseOperator` ``-inv.fif(.gz)``
# `~mne.SourceEstimate` ``-lh.stc``, ``-rh.stc``
# =================================== =========================================
#
# Alternatively, the dash ``-`` in the filename may be replaced with an
# underscore ``_`` (exceot for the ``.stc`` files).
#
# The basic process for creating an HTML report is to instantiate the
# :class:`~mne.Report` class and then use one or more of its many methods to
# add content, one element at a time.
Expand Down Expand Up @@ -564,6 +537,33 @@
# above for each file. This approach, while convenient, provides less
# flexibility with respect to content ordering, tags, titles, etc.
#
# Before getting started with :class:`mne.Report`, make sure the files you want
# to render follow the filename conventions defined by MNE:
#
# .. cssclass:: table-bordered
# .. rst-class:: midvalign
#
# =================================== =========================================
# Data object Filename convention (ends with)
# =================================== =========================================
# `~mne.io.Raw` ``-raw.fif(.gz)``, ``-raw_sss.fif(.gz)``,
# ``-raw_tsss.fif(.gz)``,
# ``_meg.fif(.gz)``, ``_eeg.fif(.gz)``,
# ``_ieeg.fif(.gz)``
# events ``-eve.fif(.gz)``
# `~mne.Epochs` ``-epo.fif(.gz)``
# `~mne.Evoked` ``-ave.fif(.gz)``
# `~mne.Covariance` ``-cov.fif(.gz)``
# `~mne.Projection` ``-proj.fif(.gz)``
# `~mne.transforms.Transform` ``-trans.fif(.gz)``
# `~mne.Forward` ``-fwd.fif(.gz)``
# `~mne.minimum_norm.InverseOperator` ``-inv.fif(.gz)``
# `~mne.SourceEstimate` ``-lh.stc``, ``-rh.stc``
# =================================== =========================================
#
# Alternatively, the dash ``-`` in the filename may be replaced with an
# underscore ``_`` (exceot for the ``.stc`` files).
#
# For our first example, we'll generate a barebones report for all the
# :file:`.fif` files containing raw data in the sample dataset, by passing the
# pattern ``*raw.fif`` to :meth:`~mne.Report.parse_folder`. We'll omit the
Expand Down

0 comments on commit 9e7225b

Please sign in to comment.