Update modules/studentact/current_situation_interface.py
Browse files
modules/studentact/current_situation_interface.py
CHANGED
@@ -3,7 +3,8 @@
|
|
3 |
import streamlit as st
|
4 |
import logging
|
5 |
from ..utils.widget_utils import generate_unique_key
|
6 |
-
|
|
|
7 |
from ..database.current_situation_mongo_db import store_current_situation_result
|
8 |
|
9 |
from .current_situation_analysis import (
|
@@ -23,6 +24,12 @@ from .current_situation_analysis import (
|
|
23 |
create_cohesion_heatmap,
|
24 |
)
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
logger = logging.getLogger(__name__)
|
27 |
####################################
|
28 |
|
|
|
3 |
import streamlit as st
|
4 |
import logging
|
5 |
from ..utils.widget_utils import generate_unique_key
|
6 |
+
import matplotlib.pyplot as plt
|
7 |
+
import numpy as np
|
8 |
from ..database.current_situation_mongo_db import store_current_situation_result
|
9 |
|
10 |
from .current_situation_analysis import (
|
|
|
24 |
create_cohesion_heatmap,
|
25 |
)
|
26 |
|
27 |
+
# Configuraci贸n del estilo de matplotlib para el gr谩fico de radar
|
28 |
+
plt.style.use('seaborn') # Opcional - da un estilo m谩s moderno
|
29 |
+
plt.rcParams['font.family'] = 'sans-serif'
|
30 |
+
plt.rcParams['font.sans-serif'] = ['Arial']
|
31 |
+
|
32 |
+
|
33 |
logger = logging.getLogger(__name__)
|
34 |
####################################
|
35 |
|