Skip to content

Commit 0cdf51f

Browse files
authored
PhyAAt lib with dataset API
1 parent d47eba6 commit 0cdf51f

17 files changed

Lines changed: 1760 additions & 2 deletions

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) [2020] [Nikesh Bajaj]
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

MANIFEST.in

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
include *.md
2+
include *.rst
3+
include LICENSE
4+
include Version
5+
include requirements.txt
6+
include phyaat/__init__.py
7+
8+
recursive-include phyaat *.py
9+
recursive-include phyaat *.txt
10+
recursive-include examples *.py
11+
recursive-include examples *.ipynb
12+
recursive-include *.ipynb
13+
14+
15+
### Exclude
16+
recursive-exclude * __pycache__
17+
recursive-exclude *.yml

README.md

Lines changed: 45 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,45 @@
1-
# phyaat
2-
PhyAAt: Physiology of Auditory Attention - Processing Library
1+
# Phyaat -Physiology of Auditory Attention
2+
## Predictive analysis of auditory attention from physiological signals
3+
4+
### **[Project Homepage](https://phyaat.github.io)**
5+
### **[PyPi - project](https://pypi.org/project/phyaat/)**
6+
7+
<p align="center">
8+
<img src="https://phyaat.github.io/_images0/ExperimentModel.png" width="500"/>
9+
</p>
10+
11+
<p align="center">
12+
<img src="https://phyaat.github.io/_images0/EEGViz_Raw1.gif" width="500"/>
13+
</p>
14+
15+
16+
### Requirement :
17+
['numpy','scipy','matplotlib','seaborn','PyWavelet']
18+
19+
## Installation
20+
21+
### with pip
22+
23+
```
24+
pip install phyaat
25+
```
26+
27+
### Build from the source
28+
Download the repository or clone it with git, after cd in directory build it from source with
29+
30+
```
31+
python setup.py install
32+
```
33+
34+
## Contents will be updated soon on homepage as well as in the phyaat library
35+
36+
______________________________________
37+
38+
# Contacts:
39+
40+
* **Nikesh Bajaj**
41+
* http://nikeshbajaj.in
42+
* n.bajaj@qmul.ac.uk
43+
* bajaj.nikkey@gmail.com
44+
### PhD Student: Queen Mary University of London & University of Genoa
45+
______________________________________

Version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.0.2

docs/Contacts.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Contacts
2+
----------
3+
4+
If any doubt, confusion or feedback please contact me at
5+
6+
* `n.bajaj@qmul.ac.uk`
7+
* `nikkeshbajaj@gmail.com`
8+
9+
Nikesh Bajaj: http://nikeshbajaj.in
10+
PhD Student: **Queen Mary University of London**

docs/Examples.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
**Examples**
2+
======================================
3+
4+
5+
6+
7+
::
8+
9+
import numpy as np
10+
import matplotlib.pyplot as plt
11+
import phyaat as ph

docs/README.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
PhyAAt: Physiology of Auditory Attention
2+
======================================
3+
4+
**Links**
5+
----------
6+
7+
* **Homepage** : https://PhyAAt.github.io
8+
* **Documentation** : https://phyaat.readthedocs.io/
9+
* **Github Page** : https://github.com/Nikeshbajaj/phyaat
10+
* **PyPi-project**: https://pypi.org/project/phyaat/
11+
12+
**Installation**
13+
----------
14+
15+
With **pip**
16+
17+
::
18+
19+
pip install phyaat

docs/index.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
PhyAAt: Physiology of Auditory Attention
2+
=====================================
3+
Predictive Analysis of Auditory Attention from Physiological Signals documentation!
4+
-------------------------------------
5+
6+
7+
This package includes following components:
8+
9+
.. toctree::
10+
:maxdepth: 2
11+
12+
README
13+
Examples
14+
Contacts

examples/example1.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import numpy as np
2+
import pandas as pd
3+
import phyaat as ph
4+
5+
6+
DataDir = ph.download_data(baseDir = '../Phyaat/',subject=1)

0 commit comments

Comments
 (0)