It is a web system for visualizing and processing EEG/SEEG FC (Functional Connectivity) data.
- Non-linear regression (Piecewise linear regression )
- Sliding windows and max time lag
- Anomaly detection and handling
- Django
- D3.js
- Vue.js
- line chart
- box chart
- violin chart
- heat map
- theme river / stream graph
- 3-D scatter chart
Python 3.7.x
| Package | Version |
|---|---|
| Django | 1.11.8 |
| numpy | |
| scipy | |
| pandas | 0.24.2 |
| xlwt |
-
Install Miniconda
For Windows 64, click here to download installation package, then install it.
-
Use conda to create an environment with python3.7
conda create -n seegvis python=3.7 -
Activate this environment
conda activate seegvis -
Install those python packages:
pip install django==1.11.8 scipy pandas==0.24.2 xlwtyou can use image sources to speed up installation, like:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple django==1.11.8 scipy pandas==0.24.2 xlwt -
Enter the SEEGVIS project folder, then run it:
python manage.py runserver 0.0.0.0:80now the project is running on your localhost
Note: If there is a SyntaxError: Generator expression must be parenthesized Please delete the last comma in this code:
'%s=%s' % (k, v) for k, v in params.items(),reference link Then repeat the step 5.
