OCEANAI / app /mbti_description.py
ElenaRyumina's picture
v0.8.0 (#8)
1bf4da3 verified
raw
history blame
900 Bytes
"""
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>The four human Personality Dimensions</h4>"