mne.time_frequency.read_tfrs#
- mne.time_frequency.read_tfrs(fname, condition=None, *, verbose=None)[source]#
Read TFR datasets from hdf5 file.
- Parameters:
- fnamepath-like
The file name, which should end with -tfr.h5 .
- condition
int
orstr
|list
ofint
orstr
|None
The condition to load. If None, all conditions will be returned. Defaults to None.
- 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.
- Returns:
- tfr
AverageTFR
|list
ofAverageTFR
|EpochsTFR
Depending on
condition
either the TFR object or a list of multiple TFR objects.
- tfr
See also
Notes
New in version 0.9.0.