Skip to content

Tools for python MNE Toolbox for EEG data analysis

Notifications You must be signed in to change notification settings

behinger/mne_tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

mne_tools

Tools for python MNE Toolbox for EEG data analysis

read_antcnt

The libeep toolbox is from ANT, you can find the source and try to compile yourself here

Install

  • Install MNE-toolbox
  • Copy the content of libeep into the .?/python2.7/site-packages/libeep/ folder
  • add read_antcnt to your path

How-To:

import read_antcnt
raw = read_antcnt('filename.cnt')
raw.plot()

Custom NBP-Things

In order to set the AUX/BIP channels as 'misc' use the following code:

raw.set_channel_types({ch:'misc' for ch in raw.ch_names if (ch.find('AUX')==0) | (ch.find('BIP')==0)}) # 

Thanks

Thanks to Robert Smies for providing me with a pre-compiled version of libeep

About

Tools for python MNE Toolbox for EEG data analysis

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages