Please check Example Gallery or Documentation
Getting started
spkit
is a python library, aimed to ease the use of signal processing algorithms and techniques. It also includes a few machine learning models with enhanced visulisations.
Table of Contents
- Installation
- Basic Filtering
- Information Theory
- Wavelet Analysis
- Transform Techniques
- Biomedical Signals
- Machine Learning
- Helpful links
Installation
Installing spkit
is simple ans easy
with pip
pip install spkit
with conda - conda-forge is in process
conda install -c nikeshbajaj spkit
Or build from source
Download the repository or clone it with git, after cd in directory build it from source with
python setup.py install
Basic Filtering
Removing baseline/drift/wander - DC component
import spkit as sp
Xf = sp.filterDC(X,..)
Xf = sp.filterDC_sGolay(X,..)
Xf = sp.filter_X(X,band =[0.5],btype='highpass',order=5,fs=128.0,ftype='filtfilt')
Filtering
import spkit as sp
#highpass
Xf = sp.filter_X(X,band =[0.5],btype='highpass',order=5,fs=128.0,ftype='filtfilt')
#bandpass
Xf = sp.filter_X(X,band =[1, 4],btype='bandpass',order=5,fs=128.0,ftype='filtfilt')
#lowpass
Xf = sp.filter_X(X,band =[40],btype='lowpass',order=5,fs=128.0,ftype='filtfilt')
Information Theory
Wavelet Analysis
Transform Techniques
Biomedical Signals
Helpful Links
- Homepage - http://spkit.github.io
- Documentation - https://spkit.readthedocs.io
- Documentation in page - http://spkit.github.io/docs
- Example Gallery - http://spkit.github.io/examples
- Github - https://github.com/Nikeshbajaj/spkit
- PyPi-project - https://pypi.org/project/spkit