v1.6.10 (2025-04-15)
Formerly named pyEEG
natMEEG is a library for processing M/EEG data built mostly on top of MNE-py and scikit-learn. It is framed to work with data collected with naturalistic stimuli, therefore with continuous recordings rather than trial-based designs. It allows analysis of continuous m/eeg and generation of temporal response functions with continuous signals as stimuli or real-valued events (e.g. word-level or phoneme-level features).
You can find the documentation here.
⚠️ Caution:
- Note that this code repository is unmaintained and intended for personal use. Most of the code about computing TRF is contained in
pyeeg/models.py, especially in the classTRFEstimatorand the function_svd_regress: the latter implements TRF estimation with memory efficient and accelerated computation for handling multiple epochs or multiple subjects.- It is recommended to use the code as a reference for your own implementation rather than relying on it for production use.
- Finaly note that the repository went through a name change from
pyEEGtonatMEEG, so you might find references topyEEGin the code and documentation.
natMEEG requires:
- Python (>= 3.10)
- psutil
- tqdm
- NumPy
- SciPy
- scikit-learn
- matplotlib
- h5py
- pandas
- mne (>= 0.16) [optional]
To generate the doc, Python package sphinx (>= 1.1.0), sphinx_rtd_theme and nbsphinx are required.
You can install the package from PyPI using pip:
pip install natmeegIf you want to install docs building dependencies, you can do:
pip install natmeeg[docs]If you want to install the package with all dependencies (including MNE), you can do:
pip install natmeeg[full]If you prefer to install the package from source, you can clone the repository or download release archive or also use the source distribution (.tar.gz file from PyPi) and build it locally. There is a C-extension that needs to compile, so you need to have a C compiler installed on your machine.
From terminal, cd in root directory of the library after cloning this repository (directory containing pyproject.toml file).
To get the package installed only through symbolic links, namely so that you can modify the source code and use modified versions at will when importing the package in your python scripts do:
pip install -e .Otherwise, for a standard installation, you can run:
pip install .There are C-extensions in the library, so you need to have a C compiler installed on your machine. If the default compiler does not work, you can try to install Visual Studio Build Tools and try again.
Optionally try with MinGW, making sure after instalation of it to add the path to mingw/bin in your PATH environment variable. You can check if it is correctly installed by running the following command in your terminal:
gcc --versionIf this build tool is available it should be detected during build process (running pip install ., pip install -e . or python -m build).
The most common usage of the library is to compute temporal response functions (TRF) from continuous M/EEG data. The library provides a TRFEstimator class that allows you to fit a TRF model to your data. The TRF model can be used to predict the M/EEG signal from a stimulus signal (e.g. a continuous audio signal or a sequence of word features):
from pyeeg import TRFEstimator
trf = TRFEstimator(tmin=-0.2, tmax=0.5, srate=fs, alpha=100.0) # TRF between -200ms and 500ms, regularization parameter alpha=100.0
trf.fit(X, y) # assuming data loaded: X is the stimulus signal, y is the M/EEG signal, they must have the same number of samples (rows)
print(trf.score(X, y)) # Normally you would use a separate test set for scoring
trf.plot() # plot the TRFSee files in examples/.
See examples/CCA_envelope.ipynb
See examples/TRF_wordonsets.ipynb
See examples/import_WordVectors.ipynb
You can generate an offline HTML version, or a PDF file of all the docs by following the following instructions (HTML pages are easier to navigate in and prettier than the PDF thanks to the nice theme brought by sphinx_rtd_theme).
To generate the documentation you will need sphinx to be installed in your Python environment, as well as the extension nbsphinx (for Jupyter Notebook integration) and the theme package sphinx_rtd_theme. Install those with:
pip install natMEEG[docs]You can access the doc as HTML or PDF format. First get the source documentation files by cloning the repository or downloading the release archive. The documentation is located in the docs folder.
To generate the documentation HTML pages, type in a terminal:
For Unix environment (from root directory, as it uses the Makefile):
make docFor Windows environment (from docs folder, where make.bat is located):
cd docs
make.bat htmlThen you can open the docs/build/html/index.html page in your favourite browser.
And for PDF version, simply use docpdf instead of doc above.
Then open docs/build/latex/pyEEG.pdf in a PDF viewer.
Note: The PDF documentation can only be generated if
latexandlatxmkare present on the machine
To clean files created during build process (can be necessary to re-build the documentation):
make cleanThis project is licensed under the terms of the GPL-3.0 license. See the LICENSE file for details.
Weissbart, H. Natmeeg - M/EEG Data Analysis in Naturalistic Context. 1.6.10, Zenodo, 9 Sept. 2025, https://doi.org/10.5281/zenodo.17084930.