I am new in MNE, but in my work i can read and load the raw data
data = mne.io.read_raw_edf(file)
raw_data = data.get_data()
however the raw_data contains very low values, in the order of 0.00xx, for a EDF file which contains integer values around -+ 1500 uV, so I am confused if read_raw is working well
My resources
MNE-Python version: 0.22.0
operating system: Windows 10
Python 3.8
I compared plotting a single channel using MNE and Matlab to show the difference. Here, Matlab given me the true values.
If you’re plotting the data manually (and not via raw.plot), you need to scale from Volts to µV by multiplying by 1e6 before plotting, as MNE keeps EEG data in Volts by default.