Spaces:
Running
Running
Update components/research_dashboard.py
Browse files
components/research_dashboard.py
CHANGED
|
@@ -1371,11 +1371,11 @@ def render_research_insights(stats, calculated_metrics, advanced_metrics):
|
|
| 1371 |
st.metric("Innovation Score", f"{innovation_score:.0f}%")
|
| 1372 |
|
| 1373 |
def render_data_management():
|
| 1374 |
-
|
| 1375 |
-
|
| 1376 |
-
|
| 1377 |
-
|
| 1378 |
-
|
| 1379 |
"""Enhanced data management section with PDF export"""
|
| 1380 |
col1, col2, col3, col4 = st.columns(4)
|
| 1381 |
|
|
|
|
| 1371 |
st.metric("Innovation Score", f"{innovation_score:.0f}%")
|
| 1372 |
|
| 1373 |
def render_data_management():
|
| 1374 |
+
import sys
|
| 1375 |
+
import os
|
| 1376 |
+
# Add utils directory to Python path
|
| 1377 |
+
utils_path = os.path.join(os.path.dirname(__file__), '..', 'utils')
|
| 1378 |
+
sys.path.append(utils_path)
|
| 1379 |
"""Enhanced data management section with PDF export"""
|
| 1380 |
col1, col2, col3, col4 = st.columns(4)
|
| 1381 |
|