Skip to content

Commit cb3bb77

Browse files
Merge pull request #15 from NeuroQuestAi/feature/v1.11.0
Feature/v1.11.0
2 parents d30a7d0 + 1876fae commit cb3bb77

19 files changed

Lines changed: 301 additions & 41 deletions

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ Thumbs.db
3939
# Specific directories and files #
4040
##################################
4141
*.pyc
42-
*.lock
4342
*.vscode
4443
*.env
4544
*.bak

Pipfile

Lines changed: 0 additions & 15 deletions
This file was deleted.

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="https://raw.githubusercontent.com/NeuroQuestAi/five-factor-e/main/doc/neuro-quest.png" align="right" width="80" height="70"/>
1+
<img src="https://raw.githubusercontent.com/NeuroQuestAi/neuroquestai.github.io/main/brand/logo/neuroquest-orange-logo.png" align="right" width="80" height="80"/>
22

33
# Five Factor E 🌊
44

@@ -8,7 +8,9 @@ https://neuroquest.ai)
88
![python 3][python_version]
99
[![PyPi Downloads](https://static.pepy.tech/badge/five-factor-e)](https://pepy.tech/project/five-factor-e)
1010
[![Code style: Black](https://img.shields.io/badge/code%20style-Black-000000.svg)](https://github.com/psf/black)
11+
[![Packaged with Poetry][poetry-badge]](https://python-poetry.org/)
1112

13+
[poetry-badge]: https://img.shields.io/badge/packaging-poetry-cyan.svg
1214
[python_version]: https://img.shields.io/static/v1.svg?label=python&message=3%20&color=blue
1315

1416
<p align="center">
@@ -79,6 +81,14 @@ $ cd five-factor-e
7981
$ python3 -m pip install .
8082
```
8183

84+
or [Poetry](https://python-poetry.org/):
85+
86+
```shell
87+
$ git clone https://github.com/NeuroQuestAi/five-factor-e.git
88+
$ cd five-factor-e
89+
$ poetry shell && poetry install
90+
```
91+
8292
### How to use 🔥
8393

8494
The construtor requires the questions model, whether it is the **300** model or short model with **120** questions. It also has the version to do simulations with the questions that are [reversed](https://ipip.ori.org/newScoringInstructions.htm). For this, you must turn the **test** variable from false to true, for more details on reverse scoring tests see section [Experiments with reverse scoring questions](https://github.com/NeuroQuestAi/five-factor-e/blob/main/data/README.md).
@@ -272,9 +282,7 @@ Note 🚩:
272282

273283
### Resources 📗
274284

275-
* http://www.personal.psu.edu/j5j/IPIP/ipipneo300.htm
276-
* http://www.personal.psu.edu/j5j/IPIP/ipipneo120.htm
277-
* http://www.personal.psu.edu/faculty/j/5/j5j/
285+
* https://sites.psu.edu/drj5j/
278286
* https://ipip.ori.org/
279287
* https://osf.io/tbmh5/
280288
* https://github.com/kholia/IPIP-NEO-PI

RELEASES.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
<img src="https://raw.githubusercontent.com/NeuroQuestAi/five-factor-e/main/doc/neuro-quest.png" align="right" width="80" height="70"/>
1+
<img src="https://raw.githubusercontent.com/NeuroQuestAi/neuroquestai.github.io/main/brand/logo/neuroquest-orange-logo.png" align="right" width="80" height="80"/>
22

33
### Releases 🎈
44

5+
Release **[1.11.0](https://github.com/NeuroQuestAi/five-factor-e/releases/tag/v1.11.0)**:
6+
7+
* Refactoring calculate percent;
8+
* Revised README files;
9+
* Change company logo.
10+
511
Release **[1.10.0](https://github.com/NeuroQuestAi/five-factor-e/releases/tag/v1.10.0)**:
612

713
* Refactoring on some code snippets;

data/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="https://raw.githubusercontent.com/NeuroQuestAi/five-factor-e/main/doc/neuro-quest.png" align="right" width="80" height="70"/>
1+
<img src="https://raw.githubusercontent.com/NeuroQuestAi/neuroquestai.github.io/main/brand/logo/neuroquest-orange-logo.png" align="right" width="80" height="80"/>
22

33
### About data 📊
44

doc/big-five-neuro-quest.png

-5.87 KB
Loading

doc/neuro-quest.png

-14.2 KB
Binary file not shown.

ipipneo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Import of the classes to be used."""
22

33
__name__ = "five-factor-e"
4-
__version__ = "1.10.0"
4+
__version__ = "1.11.0"
55

66
from ipipneo.ipipneo import IpipNeo

ipipneo/facet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
__copyright__ = "Copyright NeuroQuest 2022-2023, Big 5 Personality Traits"
66
__credits__ = ["John A. Johnson", "Dhiru Kholia"]
77
__license__ = "MIT"
8-
__version__ = "1.10.0"
8+
__version__ = "1.11.0"
99
__status__ = "production"
1010

1111
from enum import IntEnum

ipipneo/ipipneo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
__copyright__ = "Copyright NeuroQuest 2022-2023, Big 5 Personality Traits"
66
__credits__ = ["John A. Johnson", "Dhiru Kholia"]
77
__license__ = "MIT"
8-
__version__ = "1.10.0"
8+
__version__ = "1.11.0"
99
__status__ = "production"
1010

1111
import copy

0 commit comments

Comments
 (0)