This module is meant to be used as a tool for EEG signal analysis based on graph signal analysis methods. The development of this toolbox takes place in GitHub.
EEGraSP package uses other libraries like PyGSP2 and mne for most of the processing and graph signal analysis.
The EEGraSP is available on PyPI:
$ pip install eegrasp
The EEGraSP is available on Conda Forge:
$ conda install conda-forge::eegrasp
- Clone the EEGraSP repository into a local directory with git:
git clone https://github.com/gsp-eeg/eegrasp
- Change the current directory to the directory of the downloaded repository.
cd eegrasp
- Install the cloned repository in your preferred Python environment through git. Use:
pip install -e .
.
Now you are ready to contribute!
Examples are provided in the examples folder of the repository:
- The
electrode_distance.py
script computes the electrode distance from the standard biosemi64 montage provided in the MNE package. - The
ERP_reconstruction.py
script computes an example ERP from a database provided by MNE. Then, one of the channels is eliminated and reconstructed through Tikhonov Regression.
Basic steps for the package ussage are:
- Load the Package
>>> from EEGraSP.eegrasp import EEGraSP
- Initialize the EEGraSP class instance.
>>> eegsp = EEGraSP(data, eeg_pos, ch_names)
Where:
data
is a 2-dimensional numpy array with first dimension being channels and second dimension being the samples of the data. The missing channel should be included with np.nan as each sample.
eeg_pos
is a 2-dimensional numpy array with the position of the electrodes. This can be obtained through the MNE library. See examples for more information about how to do this.
ch_names
is a list of names for each channel.
- Compute the graph based on the electrodes distance. The parameters used to compute the graph need to be provided or estimated. In this case we will provide the parameters epsilon and sigma. To see how to find the best parameter for your data see
ERP_reconstruction.py
in the examples folder.
>>> distances = eegsp.compute_distance()
>>> graph_weights = eegsp.compute_graph(epsilon=0.5,sigma=0.1)
- Interpolate the missing channel.
>>> MISSING_IDX = 5
>>> interpolated = egsp.interpolate_channel(missing_idx=MISSING_IDX)
To interpolate a channel of your choice the MISSING_IDX
variable should be changed to the index of the corresponding channel. Remember that python indices start from 0.
MIT licence
Still in development.
EEGraSP has been partly funded by FONDECYT REGULAR 1231132 grant, ANILLO ACT210053, and BASAL FB0008 grant.