Update app.py
Browse files
app.py
CHANGED
@@ -227,6 +227,9 @@ def main():
|
|
227 |
student_metrics_fig = plot_student_metrics(student_metrics_df)
|
228 |
|
229 |
# NEW Expanded version of Visualization for Student Metrics
|
|
|
|
|
|
|
230 |
# Two-column layout for the visualization and intervention frequency
|
231 |
col1, col2 = st.columns([3, 1]) # Set the column width ratio
|
232 |
|
|
|
227 |
student_metrics_fig = plot_student_metrics(student_metrics_df)
|
228 |
|
229 |
# NEW Expanded version of Visualization for Student Metrics
|
230 |
+
# Compute Student Metric Averages
|
231 |
+
attendance_avg_stats, engagement_avg_stats = compute_average_metrics(student_metrics_df)
|
232 |
+
|
233 |
# Two-column layout for the visualization and intervention frequency
|
234 |
col1, col2 = st.columns([3, 1]) # Set the column width ratio
|
235 |
|