Closed kaczmarj closed 7 years ago
Yes volts. Do you have time to open a PR to clarify the documentation for the next person?
I could do that. Because a class like RawArray
can accept more than just EEG data, how would you suggest I add the proper unit of measure to the documentation?
Probably a bulleted list. To keep it slightly shorter, you can organize it by type:
* V: eeg, eog, seeg, emg, ecg, bio, ecog
* T: mag
* T/m: grad
* M: hbo, hbr
* Am: dipole
* AU: misc
And I guess it should probably go in create_info
, too / instead of RawArray
?
Thanks. I think it would make sense to include that list in the docstring of each *Array
class, and in the notes of create_info
.
Sounds good to me
this tutorial should be edited too:
http://martinos.org/mne/stable/auto_tutorials/plot_creating_data_structures.html
To edit that tutorial, would I edit https://github.com/mne-tools/mne-python/blob/master/tutorials/plot_creating_data_structures.py ?
yes exactly
I am trying to load EEG data from a
numpy
array into anmne.io.RawArray
object. What is the correct unit of measure for the data in the array? Volts? I looked through the source formne.create_info
, and it looks like the unit should be volts. Can anyone confirm?Thank you.