mne.epochs.add_channels_epochs

mne.epochs.add_channels_epochs(epochs_list, name=None, add_eeg_ref=False, verbose=None)[source]

Concatenate channels, info and data from two Epochs objects.

Parameters:

epochs_list : list of Epochs

Epochs object to concatenate.

name : str

Comment that describes the Epochs data created. Deprecated.

add_eeg_ref : bool

If True, an EEG average reference will be added (unless there is no EEG in the data). This parameter will be removed in 0.15. Use mne.set_eeg_reference() instead.

verbose : bool, str, int, or None

If not None, override default verbose level (see mne.verbose() and Logging documentation for more). Defaults to True if any of the input epochs have verbose=True.

Returns:

epochs : instance of Epochs

Concatenated epochs.