,
Creates an eeg_lst object from EEG/MEG data in FIF format. The function reads a .fif file using the mne
Python package via reticulate
.
If you do not already have mne
installed in your Python environment, ensure to install it prior to using this function using install_py_eeguana.
The .fif file is a standard format used by MNE and other neurophysiological data analysis software.
read_fif(file, .recording = file)
A .fif file containing EEG/MEG data.
Recording name, by default is the file name. This parameter is currently not used in the function but reserved for future use or metadata purposes.
An eeg_lst
object with signal_tbl and event information from a .fif file.
if (FALSE) {
eeg_data <- read_fiff("./subject1_raw.fif")
}