I have three files after one research. I’m not fully familiar with processing data of EEG experiments, so I will write what I understand just for now.
I have three files .eeg, .vhdr and .vmrk. I would like to get features and then classify this data for making some conclusion. I used such code:
import mne
import os
data_path = './'
vhdr_file = os.path.join(data_path, 'S01_Baseline.vhdr')
egg_file = os.path.join(data_path, 'S01_Baseline.eeg')
raw = mne.io.read_raw_brainvision(vhdr_file, preload=True)
and as a result I have such output in console:
Extracting parameters from ./S01_Baseline.vhdr...
Setting channel info structure...
Reading 0 ... 63259 = 0.000 ... 126.518 secs...
/Users/angor/PycharmProjects/eegProcessing/main.py:13: RuntimeWarning: Channels contain different lowpass filters. Highest (weakest) filter setting (131.00 Hz) will be stored.
raw = mne.io.read_raw_brainvision(vhdr_file, preload=True)
I don’t understand fully how to fix this error, because as I saw in the official tutorials I don’t have to set any channels info. Also maybe you can give me some advises about such data processing.
Thank you in advance!
Also channel info is here:
Ch1=1,,0.0406901,µV
Ch2=2,,0.0406901,µV
Ch3=3,,0.0406901,µV
Ch4=4,,0.0406901,µV
Ch5=5,,0.0406901,µV
Ch6=6,,0.0406901,µV
Ch7=7,,0.0406901,µV
Ch8=8,,0.0406901,µV
Ch9=9,,0.0406901,µV
Ch10=10,,0.0406901,µV
Ch11=11,,0.0406901,µV
Ch12=12,,0.0406901,µV
Ch13=13,,0.0406901,µV
Ch14=14,,0.0406901,µV
Ch15=15,,0.0406901,µV
Ch16=16,,0.0406901,µV
Ch17=17,,0.0406901,µV
Ch18=18,,0.0406901,µV
Ch19=19,,0.0406901,µV
Ch20=20,,0.0406901,µV
Ch21=21,,0.0406901,µV
Ch22=22,,0.0406901,µV
Ch23=23,,0.0406901,µV
Ch24=24,,0.0406901,µV
Ch25=25,,0.0406901,µV
Ch26=26,,0.0406901,µV
Ch27=27,,0.0406901,µV
Ch28=28,,0.0406901,µV
Ch29=29,,0.0406901,µV
Ch30=30,,0.0406901,µV
Ch31=31,,0.0406901,µV
Ch32=32,,0.0406901,µV
Ch33=x_dir,,1,mg
Ch34=y_dir,,1,mg
Ch35=z_dir,,1,mg
- MNE version: 1.6.1
- operating system: macOS last