mne.write_evokeds#
- mne.write_evokeds(fname, evoked, *, on_mismatch='raise', overwrite=False, verbose=None)[source]#
Write an evoked dataset to a file.
- Parameters:
- fnamepath-like
The file name, which should end with
-ave.fif
or-ave.fif.gz
.- evoked
Evoked
instance, orlist
ofEvoked
instances The evoked dataset, or list of evoked datasets, to save in one file. Note that the measurement info from the first evoked instance is used, so be sure that information matches.
- on_mismatch‘raise’ | ‘warn’ | ‘ignore’
Can be
'raise'
(default) to raise an error,'warn'
to emit a warning, or'ignore'
to ignore when the device-to-head transformation differs between instances.New in version 0.24.
- overwrite
bool
If True (default False), overwrite the destination file if it exists.
New in version 1.0.
- verbose
bool
|str
|int
|None
Control verbosity of the logging output. If
None
, use the default verbosity level. See the logging documentation andmne.verbose()
for details. Should only be passed as a keyword argument.New in version 0.24.
See also
Notes
Changed in version 0.23: Information on baseline correction will be stored with each individual
Evoked
object, and will be restored when reading the data again viamne.read_evokeds
.