File size: 937 Bytes
1bf4da3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1a72a47
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""
File: mbti_description.py
Author: Elena Ryumina and Dmitry Ryumin
Description: Personality dimensions description.
License: MIT License
"""

import pandas as pd

# Importing necessary components for the Gradio app

MBTI_DATA = pd.DataFrame(
    {
        "Dimension description": [
            "How we interact with the world and where we direct our energy",
            "The kind of information we naturally notice",
            "How we make decisions",
            "Whether we prefer to live in a more structured way (making decisions) or in a more spontaneous way (taking in information)",
        ],
        "Dimension": [
            "(E) Extraversion - Introversion (I)",
            "(S) Sensing - Intuition (N)",
            "(T) Thinking - Feeling (F)",
            "(J) Judging  - Perceiving (P)",
        ],
    }
)

MBTI_DESCRIPTION = (
    "<h4>Personality types of MBTI are based on four Personality Dimensions</h4>"
)