Update modules/studentact/current_situation_interface.py
Browse files
modules/studentact/current_situation_interface.py
CHANGED
@@ -5,8 +5,17 @@ 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 (
|
11 |
analyze_text_dimensions,
|
12 |
analyze_clarity,
|
@@ -20,7 +29,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
|
|
|
5 |
from ..utils.widget_utils import generate_unique_key
|
6 |
import matplotlib.pyplot as plt
|
7 |
import numpy as np
|
8 |
+
|
9 |
from ..database.current_situation_mongo_db import store_current_situation_result
|
10 |
|
11 |
+
from ..database.writing_progress_mongo_db import (
|
12 |
+
store_writing_baseline,
|
13 |
+
store_writing_progress,
|
14 |
+
get_writing_baseline,
|
15 |
+
get_writing_progress,
|
16 |
+
get_latest_writing_metrics
|
17 |
+
)
|
18 |
+
|
19 |
from .current_situation_analysis import (
|
20 |
analyze_text_dimensions,
|
21 |
analyze_clarity,
|
|
|
29 |
generate_connection_paths,
|
30 |
create_vocabulary_network,
|
31 |
create_syntax_complexity_graph,
|
32 |
+
create_cohesion_heatmap
|
33 |
)
|
34 |
|
35 |
# Configuraci贸n del estilo de matplotlib para el gr谩fico de radar
|