mne.time_frequency.read_tfrs#
- mne.time_frequency.read_tfrs(fname, condition=None, *, verbose=None)[source]#
Load a TFR object from disk.
- Parameters:
- fnamepath-like
Path to a TFR file in HDF5 format, which should end with
-tfr.h5
or-tfr.hdf5
.- condition
int
orstr
|list
ofint
orstr
|None
The condition to load. If
None
, all conditions will be returned. Defaults toNone
.- verbosebool |
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
RawTFR
|EpochsTFR
|AverageTFR
|list
ofRawTFR
|list
ofEpochsTFR
|list
ofAverageTFR
The loaded time-frequency object.
- tfr
See also
Notes
New in v0.9.0.