├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── algorithms ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── basic.cpython-36.pyc │ ├── classification_models.cpython-36.pyc │ ├── classifier.cpython-36.pyc │ ├── cluster_models.cpython-36.pyc │ ├── clustering.cpython-36.pyc │ ├── cosine_distance_methods.cpython-36.pyc │ ├── cosine_distance_models.cpython-36.pyc │ ├── erp.cpython-36.pyc │ ├── general.cpython-36.pyc │ ├── gfp.cpython-36.pyc │ ├── other.cpython-36.pyc │ ├── similiarity.cpython-36.pyc │ ├── spectrum.cpython-36.pyc │ ├── tanova.cpython-36.pyc │ └── topo.cpython-36.pyc ├── basic.py ├── classification_models.py ├── cluster_models.py ├── cosine_distance_models.py ├── erp.py ├── other.py ├── spectrum.py └── topo.py ├── data └── montages │ └── standard-10-5-cap385.elp ├── default.py ├── docs ├── api.md ├── api_template.txt ├── changelog.md ├── cookbook.md ├── cookbook_template.txt ├── docs_generator.py ├── index.md ├── quickstart.md ├── quickstart_template.txt └── tip.md ├── graph ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── draw.cpython-36.pyc │ ├── figure_group.cpython-36.pyc │ ├── figure_unit.cpython-36.pyc │ └── put.cpython-36.pyc ├── figure_group.py └── figure_unit.py ├── group.py ├── io ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── load.cpython-35.pyc │ ├── load.cpython-36.pyc │ ├── save.cpython-35.pyc │ └── save.cpython-36.pyc ├── load.py └── save.py ├── mkdocs.yml ├── statistics ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── process.cpython-36.pyc │ ├── stats_methods.cpython-36.pyc │ └── test.cpython-36.pyc ├── process.py └── stats_methods.py ├── structure.py └── tests ├── (Demo) Face perception.ipynb └── test.ipynb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/__init__.py -------------------------------------------------------------------------------- /algorithms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__init__.py -------------------------------------------------------------------------------- /algorithms/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/basic.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/basic.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/classification_models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/classification_models.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/classifier.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/classifier.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/cluster_models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/cluster_models.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/clustering.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/clustering.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/cosine_distance_methods.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/cosine_distance_methods.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/cosine_distance_models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/cosine_distance_models.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/erp.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/erp.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/general.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/general.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/gfp.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/gfp.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/other.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/other.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/similiarity.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/similiarity.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/spectrum.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/spectrum.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/tanova.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/tanova.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/topo.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/__pycache__/topo.cpython-36.pyc -------------------------------------------------------------------------------- /algorithms/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/basic.py -------------------------------------------------------------------------------- /algorithms/classification_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/classification_models.py -------------------------------------------------------------------------------- /algorithms/cluster_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/cluster_models.py -------------------------------------------------------------------------------- /algorithms/cosine_distance_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/cosine_distance_models.py -------------------------------------------------------------------------------- /algorithms/erp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/erp.py -------------------------------------------------------------------------------- /algorithms/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/other.py -------------------------------------------------------------------------------- /algorithms/spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/spectrum.py -------------------------------------------------------------------------------- /algorithms/topo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/algorithms/topo.py -------------------------------------------------------------------------------- /data/montages/standard-10-5-cap385.elp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/data/montages/standard-10-5-cap385.elp -------------------------------------------------------------------------------- /default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/default.py -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/api_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/docs/api_template.txt -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/cookbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/docs/cookbook.md -------------------------------------------------------------------------------- /docs/cookbook_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/docs/cookbook_template.txt -------------------------------------------------------------------------------- /docs/docs_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/docs/docs_generator.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/quickstart_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/docs/quickstart_template.txt -------------------------------------------------------------------------------- /docs/tip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/docs/tip.md -------------------------------------------------------------------------------- /graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/graph/__init__.py -------------------------------------------------------------------------------- /graph/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/graph/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /graph/__pycache__/draw.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/graph/__pycache__/draw.cpython-36.pyc -------------------------------------------------------------------------------- /graph/__pycache__/figure_group.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/graph/__pycache__/figure_group.cpython-36.pyc -------------------------------------------------------------------------------- /graph/__pycache__/figure_unit.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/graph/__pycache__/figure_unit.cpython-36.pyc -------------------------------------------------------------------------------- /graph/__pycache__/put.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/graph/__pycache__/put.cpython-36.pyc -------------------------------------------------------------------------------- /graph/figure_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/graph/figure_group.py -------------------------------------------------------------------------------- /graph/figure_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/graph/figure_unit.py -------------------------------------------------------------------------------- /group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/group.py -------------------------------------------------------------------------------- /io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/io/__init__.py -------------------------------------------------------------------------------- /io/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/io/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /io/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/io/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /io/__pycache__/load.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/io/__pycache__/load.cpython-35.pyc -------------------------------------------------------------------------------- /io/__pycache__/load.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/io/__pycache__/load.cpython-36.pyc -------------------------------------------------------------------------------- /io/__pycache__/save.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/io/__pycache__/save.cpython-35.pyc -------------------------------------------------------------------------------- /io/__pycache__/save.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/io/__pycache__/save.cpython-36.pyc -------------------------------------------------------------------------------- /io/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/io/load.py -------------------------------------------------------------------------------- /io/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/io/save.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /statistics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/statistics/__init__.py -------------------------------------------------------------------------------- /statistics/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/statistics/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /statistics/__pycache__/process.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/statistics/__pycache__/process.cpython-36.pyc -------------------------------------------------------------------------------- /statistics/__pycache__/stats_methods.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/statistics/__pycache__/stats_methods.cpython-36.pyc -------------------------------------------------------------------------------- /statistics/__pycache__/test.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/statistics/__pycache__/test.cpython-36.pyc -------------------------------------------------------------------------------- /statistics/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/statistics/process.py -------------------------------------------------------------------------------- /statistics/stats_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/statistics/stats_methods.py -------------------------------------------------------------------------------- /structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/structure.py -------------------------------------------------------------------------------- /tests/(Demo) Face perception.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/tests/(Demo) Face perception.ipynb -------------------------------------------------------------------------------- /tests/test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ray306/EasyEEG/HEAD/tests/test.ipynb --------------------------------------------------------------------------------