I would like to appear in a small signal as shown on the [website] so that it is easier to see (Working with events — MNE 0.23.dev0 documentation). As you can see below. Could anyone give me some help, please?
If that’s the case, you can also override the default scaling factors and ensure that the largest fraction of data is shown without clipping automatically by doing:
It should ideally be scaled correctly during reading. What data format is that? MNE tries to scale everything correctly automatically, but maybe there is a bug in the specific reader somewhere…
I am able to adjust the signal now. Yet it still says that in uV. Kindly see the picture below, black circle. I uploaded the raw data in CSV format.
Should I change my file not in CSV format ? what is the best format to work with then ?
Since you’re reading a custom file format and not relying on a built-in reader of MNE (why is that, anyway?), you need to ensure the data is scaled to Volts before creating the RawArray. I would assume either dataCut *= 1e-6 or dataCut *= 1e-9 should do it, depending on whether the data are currently stored as μV or nV.
That is the only way that I know how to upload CSV file format. I am using OpenBCI cap which resulted in CSV file. Do you have any suggestion what would be the best way of reading CSV by using a built-in reader of MNE then ? please advise !
If we use the built-in reader of MNE, will the data be scalled to Volts automatically ?
I believe OpenBCI uses μV for data storage. Simply multiply by 1e-6 to convert to Volts, and you should be fine. I don’t think we have an OpenBCI reader yet. Could be interesting to add one, though!
OpenBCI now moves to Brainflow module, which I have no idea yet whether it can produce output file in EDF or BDF format. Previously, with GUI openBCI you can produce BDF file format as output.