Scaling issue while plotting EEG signal

It seems like the data is not stored in V. You can rescale your data after importing by e.g.

raw.apply_function(lambda x: x * 1e-6, channel_wise=False)

This rescales from µV to V, but you can adjust the factor to match the actual scaling of your data.

1 Like