EEG Units not converted to Volts
See original GitHub issueDescribe the bug
Hi MNE team, I’m still quite sure what is going on, but i believe that the EEG channels in the attached EDF are not being correctly translated to volts. I’ve opened the file in a number of programs, and the values are different in each.
Steps and/or code to reproduce
the file: unit_testing.zip
import mne
raw = mne.io.read_raw_edf('unit_testing.edf')
some_edf_channels = ['C3','C4']
chan_data = raw.get_data(some_edf_channels)
print(np.sum(np.abs(chan_data))/chan_data.size) #this prints 0.035V, which is too high, it should be 0.000035V
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
EEG data in .edf not converting in volt - MNE Forum - Discourse
I am a new user working on EEG data. I am using my own data using LabChart, but the microVolt is not converting...
Read more >EEG units - Discussions - Brainstorm
Correct, the EEG gain matrix converts A-m to Volts. Thus the units in the Gain matrix are (V / (A-m)). Because units are...
Read more >Algorithms and other implementation details - MNE-Python
Raw.plot_psd() will convert teslas to femtoteslas (fT) and volts to microvolts (µV) when plotting MEG and EEG data. The units used in ...
Read more >EEG
Signal intensity: EEG activity is quite small, measured in microvolts (mV). ... EEG activity in which no stable rhythms are present. Dysrhythmic.
Read more >[Eeglablist] What is the unit of datas in EEG.data
I guess the unit is fixed to be >> microvolt, and it's not written anywhere! ... you can try >>>> EEG.data = EEG.data*/1000;...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
thanks for the clear bug report !
Awesome, working now, thanks 😃