LiyuanLucasLiu / spike2py

spike2py provides a simple interface to analyse and visualise data

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

spike2py

License: GPL v3 Code style: black coverage Contributor Covenant Documentation Status

spike2py provides a simple interface to analyse and visualise data collected using Spike2 software and Cambridge Electronics Design (CED) data acquisition boards. With it you can easily plot individual channels or all channels from a given trial. In addition, you can easily apply various signal processing methods to your waveform data. Finally, you can easily save your data at any point, allowing you to re-open and continue your work from where they left off.

To demonstrate, the following snippet of code shows you how to:

  1. Read a file
  2. Plot the electromyography (EMG) signal from one of the channels
  3. Remove the mean of the first 500 samples and rectify EMG signal, and plot the result
>>> from spike2py.trial import TrialInfo, Trial
>>> trial_info = TrialInfo(file="sample.mat")
>>> sample = Trial(trial_info)
>>> sample.muscle_emg.plot()
>>> sample.muscle_emg.remove_mean(first_n_samples=500).rect().plot()

emg_raw

Documentation

Introductory tutorials, how-to's and other useful documentation are available on Read the Docs

Installing

spike2py is available on PyPI:

$ python -m pip install spike2py

spike2py officially supports Python 3.8+.

Contributing

Like this project? Want to help? We would love to have your contribution! Please see CONTRIBUTING to get started.

Code of conduct

This project adheres to the Contributor Covenant code of conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to heroux.martin@gmail.com.

License

GPLv3

About

spike2py provides a simple interface to analyse and visualise data

License:GNU General Public License v3.0


Languages

Language:Python 100.0%