Skip to content

Commit 4baa177

Browse files
feat: Rename company 👽
1 parent f07ab9f commit 4baa177

3 files changed

Lines changed: 14 additions & 14 deletions

File tree

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="https://raw.githubusercontent.com/neural7/five-factor-e/main/doc/neural7.png" align="right" width="80" height="70"/>
1+
<img src="https://raw.githubusercontent.com/rewire5-io/five-factor-e/main/doc/rewire5.png" align="right" width="80" height="70"/>
22

33
# Five Factor E 🌊
44

@@ -10,7 +10,7 @@
1010
[python_version]: https://img.shields.io/static/v1.svg?label=python&message=3.7%20|%203.8%20|%203.9%20|%203.10%20|%203.11%20&color=blue
1111

1212
<p align="center">
13-
<img src="https://raw.githubusercontent.com/neural7/five-factor-e/main/doc/big-five-neural7.png" alt="Representation of the Big Five"/>
13+
<img src="https://raw.githubusercontent.com/rewire5-io/five-factor-e/main/doc/big-five-rewire5.png" alt="Representation of the Big Five"/>
1414
</p>
1515

1616
This project assesses a person's 🗣 personality based on an inventory of questions. The project uses the **Big Five** theory using the [IPIP-NEO-300](http://www.personal.psu.edu/~j5j/IPIP/ipipneo300.htm) model created by **Lewis R. Goldberg** and [IPIP-NEO-120](http://www.personal.psu.edu/~j5j/IPIP/ipipneo120.htm) the shorter version developed by Professor **Dr. John A. Johnson**, this is a free representation of the [NEO PI-R™](https://en.wikipedia.org/wiki/Revised_NEO_Personality_Inventory).
@@ -21,7 +21,7 @@ The main idea of the project is to facilitate the use of **Python** developers w
2121

2222
👉 *"That is wonderful, ...! Thank you for developing the Python version of the IPIP-NEO and making it publicly available. It looks like a great resource."* - Dr. Johnson
2323

24-
Note 🚩: *The project is based on the work of **Dhiru Kholia**, and is an adaptation of [Neural7](https://github.com/neural7) for a version that can be reused in other projects of the company.*
24+
Note 🚩: *The project is based on the work of **Dhiru Kholia**, and is an adaptation of [ReWire5](https://github.com/rewire5-io) for a version that can be reused in other projects of the company.*
2525

2626
### Synopsis 🌐
2727

@@ -59,7 +59,7 @@ Note 🚩: Some answers have the order of the [score reversed](https://ipip.ori.
5959

6060
News about each version please look here:
6161

62-
* [Releases](https://github.com/neural7/five-factor-e/blob/main/RELEASES.md)
62+
* [Releases](https://github.com/rewire5-io/five-factor-e/blob/main/RELEASES.md)
6363

6464
### Installation 🚀
6565

@@ -72,14 +72,14 @@ $ python3 -m pip install --upgrade five-factor-e
7272
From source:
7373

7474
```shell
75-
$ git clone https://github.com/neural7/five-factor-e.git
75+
$ git clone https://github.com/rewire5-io/five-factor-e.git
7676
$ cd five-factor-e
7777
$ python3 -m pip install .
7878
```
7979

8080
### How to use 🔥
8181

82-
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/neural7/five-factor-e/blob/main/data/README.md).
82+
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/rewire5-io/five-factor-e/blob/main/data/README.md).
8383

8484
| Parameters | Type | Description |
8585
| ------------- | --------- | ----------------------------------------------------------------- |
@@ -102,12 +102,12 @@ from ipipneo import IpipNeo
102102
ipip = IpipNeo(question=300)
103103
```
104104

105-
The answers must be in a *standardized json*, you can insert this template in the [data](https://github.com/neural7/five-factor-e/blob/main/data/IPIP-NEO/120/answers.json) folder of the project. This dictionary contains random answers, used for testing purposes only. As an example, you can load the file with the **120** test responses:
105+
The answers must be in a *standardized json*, you can insert this template in the [data](https://github.com/rewire5-io/five-factor-e/blob/main/data/IPIP-NEO/120/answers.json) folder of the project. This dictionary contains random answers, used for testing purposes only. As an example, you can load the file with the **120** test responses:
106106

107107
```python
108108
import json, urllib.request
109109

110-
data = urllib.request.urlopen("https://raw.githubusercontent.com/neural7"\
110+
data = urllib.request.urlopen("https://raw.githubusercontent.com/rewire5-io"\
111111
"/five-factor-e/main/data/IPIP-NEO/120/answers.json").read()
112112

113113
answers120 = json.loads(data)
@@ -118,7 +118,7 @@ For the long inventory version with **300** items.
118118
```python
119119
import json, urllib.request
120120

121-
data = urllib.request.urlopen("https://raw.githubusercontent.com/neural7"\
121+
data = urllib.request.urlopen("https://raw.githubusercontent.com/rewire5-io"\
122122
"/five-factor-e/main/data/IPIP-NEO/300/answers.json").read()
123123

124124
answers300 = json.loads(data)
@@ -200,7 +200,7 @@ An example of the output of the results:
200200
}
201201
```
202202

203-
Example of the complete output check here: [Big 5️⃣ Output](https://github.com/neural7/five-factor-e/blob/main/data/IPIP-NEO/120/result.json)
203+
Example of the complete output check here: [Big 5️⃣ Output](https://github.com/rewire5-io/five-factor-e/blob/main/data/IPIP-NEO/120/result.json)
204204

205205
### Tests 🏗
206206

@@ -227,14 +227,14 @@ $ pip install five-factor-e[quiz]
227227
Example output with graphics:
228228

229229
<p align="center">
230-
<img src="https://raw.githubusercontent.com/neural7/five-factor-e/feature/v1.5.0/doc/sample-light-1.png" alt="Big Five Results" border="1"/>
230+
<img src="https://raw.githubusercontent.com/rewire5-io/five-factor-e/feature/v1.5.0/doc/sample-light-1.png" alt="Big Five Results" border="1"/>
231231
</p>
232232

233233
*The complete result is saved in the run folder in json format*.
234234

235235
### About data 📊
236236

237-
Inside the data [data](https://github.com/neural7/five-factor-e/blob/main/data/) directory, there are examples of questions and answers. The most important is the response data entry which must follow the pattern of this [file](https://github.com/neural7/five-factor-e/blob/main/data/IPIP-NEO/120/answers.json). Example:
237+
Inside the data [data](https://github.com/rewire5-io/five-factor-e/blob/main/data/) directory, there are examples of questions and answers. The most important is the response data entry which must follow the pattern of this [file](https://github.com/rewire5-io/five-factor-e/blob/main/data/IPIP-NEO/120/answers.json). Example:
238238

239239
```json
240240
{
@@ -251,7 +251,7 @@ Inside the data [data](https://github.com/neural7/five-factor-e/blob/main/data/)
251251
}
252252
```
253253

254-
The id question field refers to the question in this [file](https://github.com/neural7/five-factor-e/blob/main/data/IPIP-NEO/120/questions.json).
254+
The id question field refers to the question in this [file](https://github.com/rewire5-io/five-factor-e/blob/main/data/IPIP-NEO/120/questions.json).
255255
Obviously if you want you can change the translation of the question, *but don't change the ID of the question*.
256256

257257
Note 🚩:
@@ -279,4 +279,4 @@ Note 🚩:
279279

280280
### Authors 👨‍💻
281281

282-
* [Ederson Corbari](mailto:e@neural7.io) 👽
282+
* [Ederson Corbari](mailto:e@rewire5.io) 👽
File renamed without changes.

0 commit comments

Comments
 (0)