Skip to content
Open
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
8 changes: 6 additions & 2 deletions mne/viz/epochs.py
Original file line number Diff line number Diff line change
Expand Up @@ -800,8 +800,12 @@ def plot_epochs(
The new equivalent is ``events=False``.
%(event_color)s
Defaults to ``None``.
order : array of str | None
Order in which to plot channel types.
order : array of int | None
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
order : array of int | None
order : array-like of int | None

Order in which to plot data. If the array is shorter than the number of
channels, only the given channels are plotted. If None (default), all
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
channels, only the given channels are plotted. If None (default), all
channels, only the given channels are plotted. If ``None`` (default), all

channels are plotted. If ``group_by`` is ``'position'`` or
``'selection'``, the ``order`` parameter is used only for selecting the
channels to be plotted.

.. versionadded:: 0.18.0
show : bool
Expand Down