Skip to content
Merged
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
4 changes: 3 additions & 1 deletion mne/channels/channels.py
Original file line number Diff line number Diff line change
Expand Up @@ -1876,8 +1876,9 @@ def make_1020_channel_selections(info, midline="z"):
return selections


@verbose
def combine_channels(inst, groups, method='mean', keep_stim=False,
drop_bad=False):
drop_bad=False, verbose=None):
"""Combine channels based on specified channel grouping.

Parameters
Expand Down Expand Up @@ -1915,6 +1916,7 @@ def combine_channels(inst, groups, method='mean', keep_stim=False,
drop_bad : bool
If ``True``, drop channels marked as bad before combining. Defaults to
``False``.
%(verbose)s

Returns
-------
Expand Down