This Python EEG visualizer consists of three scripts:
-
Dataextract.py: This script extracts data from .edf files and calculates features using the provided code.
-
Features.py: This script calculates features using the provided code and saves the results to a CSV file named
alldata11.csv. -
Visual.py: This script visualizes the data extracted and features calculated by
Dataextract.pyandFeatures.py. It loads data fromalldata11.csv, plots the average Rate of Change of channel C4 over windows, and displays it using Matplotlib.
- Python 3.x
- pandas
- matplotlib
-
Run
Dataextract.pyto extract data from .edf files and calculate features.python Dataextract.py
-
Run Features.py to calculate features using the extracted data and save the results to alldata11.csv.
-
Run Visual.py to visualize the data.
This will generate a visualization of the average Rate of Change of channel C4 over windows.