load and display csv file correctly

Your data is likely not scaled in Volts (which is what MNE expects). You can rescale your data using:

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

See for example Scaling issue while plotting EEG signal - #2 by cbrnr.

2 Likes