fname : string
The file name, which should end with -ave.fif or -ave.fif.gz.
condition : int or str | list of int or str | None
The index or list of indices of the evoked dataset to read. FIF files
can contain multiple datasets. If None, all datasets are returned as a
list.
baseline : None (default) or tuple of length 2
The time interval to apply baseline correction. If None do not apply
it. If baseline is (a, b) the interval is between “a (s)” and “b (s)”.
If a is None the beginning of the data is used and if b is None then
b is set to the end of the interval. If baseline is equal to
(None, None) all the time interval is used.
kind : str
Either ‘average’ or ‘standard_error’, the type of data to read.
proj : bool
If False, available projectors won’t be applied to the data.
verbose : bool, str, int, or None
If not None, override default verbose level (see mne.verbose).
|