Update modules/studentact/current_situation_interface.py
Browse files
modules/studentact/current_situation_interface.py
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
# modules/studentact/current_situation_interface-vOK.py
|
2 |
-
|
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 (
|
@@ -20,7 +22,7 @@ from .current_situation_analysis import (
|
|
20 |
generate_connection_paths,
|
21 |
create_vocabulary_network,
|
22 |
create_syntax_complexity_graph,
|
23 |
-
create_cohesion_heatmap
|
24 |
)
|
25 |
|
26 |
# Configuraci贸n del estilo de matplotlib para el gr谩fico de radar
|
|
|
1 |
# modules/studentact/current_situation_interface-vOK.py
|
2 |
+
# Importaciones generales.
|
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 |
+
|
9 |
+
# Importaciones locales
|
10 |
from ..database.current_situation_mongo_db import store_current_situation_result
|
11 |
|
12 |
from .current_situation_analysis import (
|
|
|
22 |
generate_connection_paths,
|
23 |
create_vocabulary_network,
|
24 |
create_syntax_complexity_graph,
|
25 |
+
create_cohesion_heatmap
|
26 |
)
|
27 |
|
28 |
# Configuraci贸n del estilo de matplotlib para el gr谩fico de radar
|