@@ -325,7 +325,7 @@ def set_eeg_reference(
325325
326326 Returns
327327 -------
328- inst : instance of Raw | Epochs | Evoked
328+ inst : same type as the input data
329329 Data with EEG channels re-referenced. If ``ref_channels='average'``
330330 and ``projection=True`` a projection will be added instead of
331331 directly re-referencing the data.
@@ -388,7 +388,7 @@ def pick_types(
388388
389389 Returns
390390 -------
391- inst : instance of Raw, Epochs, or Evoked
391+ inst : same type as the input data
392392 The modified instance.
393393
394394 See Also
@@ -463,7 +463,7 @@ def pick_channels(self, ch_names, ordered=True, *, verbose=None):
463463
464464 Returns
465465 -------
466- inst : instance of Raw, Epochs, or Evoked
466+ inst : same type as the input data
467467 The modified instance.
468468
469469 See Also
@@ -501,7 +501,7 @@ def pick(self, picks, exclude=(), *, verbose=None):
501501
502502 Returns
503503 -------
504- inst : instance of Raw, Epochs, or Evoked
504+ inst : same type as the input data
505505 The modified instance.
506506 """
507507 picks = _picks_to_idx (self .info , picks , "all" , exclude , allow_empty = False )
@@ -532,7 +532,7 @@ def reorder_channels(self, ch_names):
532532
533533 Returns
534534 -------
535- inst : instance of Raw, Epochs, or Evoked
535+ inst : same type as the input data
536536 The modified instance.
537537
538538 See Also
@@ -569,7 +569,7 @@ def drop_channels(self, ch_names, on_missing="raise"):
569569
570570 Returns
571571 -------
572- inst : instance of Raw, Epochs, or Evoked
572+ inst : same type as the input data
573573 The modified instance.
574574
575575 See Also
@@ -691,7 +691,7 @@ def add_channels(self, add_list, force_update_info=False):
691691
692692 Returns
693693 -------
694- inst : instance of Raw, Epochs, or Evoked
694+ inst : same type as the input data
695695 The modified instance.
696696
697697 See Also
@@ -812,7 +812,7 @@ def add_reference_channels(self, ref_channels):
812812
813813 Returns
814814 -------
815- inst : instance of Raw | Epochs | Evoked
815+ inst : same type as the input data
816816 The modified instance.
817817 """
818818 return add_reference_channels (self , ref_channels , copy = False )
@@ -878,7 +878,7 @@ def interpolate_bads(
878878
879879 Returns
880880 -------
881- inst : instance of Raw, Epochs, or Evoked
881+ inst : same type as the input data
882882 The modified instance.
883883
884884 Notes
@@ -1006,7 +1006,7 @@ def interpolate_to(
10061006
10071007 Returns
10081008 -------
1009- inst : instance of Raw, Epochs, or Evoked
1009+ inst : same type as the input data
10101010 A new instance with interpolated data and updated channel
10111011 information.
10121012
@@ -2015,7 +2015,7 @@ def combine_channels(
20152015
20162016 Returns
20172017 -------
2018- combined_inst : instance of Raw, Epochs, or Evoked
2018+ combined_inst : same type as the input data
20192019 An MNE-Python object of the same type as the input ``inst``, containing
20202020 one virtual channel for each group in ``groups`` (and, if ``keep_stim``
20212021 is ``True``, also containing stimulus channels).
0 commit comments