Package for filtering EEG signals and EP (evoked potentials).
Project description
eeg-filters
Package helps you to filter and analyze EEG signals and EP (evoked potentials). Filter based on Chebyshev filter from scipy.signals
You can take data from files exported from NeuroExplorer Vesion 4.4 in ASCII format. You can make a bandpass filter in some bandwidth like [1, 220]. These the lower and upper frequency boundaries in Hz.
Also you can find maximums in one time interval and minimums in another time interval.
Finally you can export data to files. Filtered data could be exported to the ASCII file in the same (NeuroExplorer 4.4) format as the source file. Extremums can be exported to a text file with tab splitted columns.
Requirements
- numpy
- scipy
- matplotlib
Installation.
pip install eeg-filters
Usage
For example:
$python3
>>> from eeg_filters.upload import prepare_data
>>> from eeg_filters.filters import show_plot
>>> sample_rate, list_times, list_ticks, list_out = prepare_data('input/data.txt')
>>> show_plot(list_times,list_ticks,list_out,[1, 200],sample_rate,3,2,0.003)
>>> show_plot(list_times,list_ticks,list_out,[1, 200],sample_rate,max_region=[0.08,0.104],min_region=[0.105,0.14])
In this example we made a filter in bandwidth = [1, 200]. And in the last line we make show_plot with extremums.
You can use it in scripts like this:
!#/usr/bin/python3
from eeg_filters.upload import prepare_data
from eeg_filters.filters import make_filter, search_max_min
from eeg_filters.export import export_curves, export_extremums
source_file_name = input('input path for source file, please: ')
bandwidths = [[1, 100],[5, 100],[10, 100],[1, 200], [5, 200],[10, 200]]
max_region = [0.08, 0.1]
min_region = [0.103, 0.12]
sample_rate, list_times, list_ticks, list_out = prepare_data(source_file_name)
dict_filtered_data = {}
for bandwidth in bandwidths:
dict_data = {}
dict_extremums = {}
for timestamp, list_data in zip(list_times,list_out):
filtered_data = make_filter(
list_data,
bandwidth,
sample_rate,
order=3,
rp=2)
dict_data.update({timestamp: filtered_data})
dict_extremums.update({timestamp:(
search_max_min(
list_ticks,
filtered_data,
max_region,
'max'
),
search_max_min(
list_ticks,
filtered_data,
min_region,
'min'
)
)})
# export data of filtered EEG signals
export_curves(
source_file_name,
'./',
bandwidth,
dict_data
)
# export extremums of filtered EEG signals
export_extremums(
'./',
bandwidth,
dict_extremums
)
Also you can use any UI for this package. For example you can see this project:
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file eeg_filters-0.0.7.tar.gz
.
File metadata
- Download URL: eeg_filters-0.0.7.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6007dd87b9a2f7f808f3306f03cb47ff5d68976a6fbad755dbcc06e5d651a5a |
|
MD5 | 282cde62d10d66dd715f8d25098b549b |
|
BLAKE2b-256 | b2b0dc590a15e5824583dee8f58fa53ead9d7435028fa169253a465fd0a218d8 |
File details
Details for the file eeg_filters-0.0.7-py3-none-any.whl
.
File metadata
- Download URL: eeg_filters-0.0.7-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0bb6068016fe165a6794ff2827f2d9d92427c94301817207eea51416bf89d88 |
|
MD5 | 95a48553713e1fb2013eff8d734b2c55 |
|
BLAKE2b-256 | 1cde1dd97a0ccced3eab90fa5fe0c27f685c3e4553a3743c2030567454c22a94 |