File size: 37,405 Bytes
599973c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 | """
Learning Paths Page
Analyzes ordered sequences of lessons within Musora app brands.
Shows how engagement and sentiment evolve as students progress through a path.
Architecture:
- Filter panel β Fetch button β session state β charts + cards
- Per-Path view: one funnel per learning path, denominator resets per path
- Method-Wide view: continuous funnel across all paths with one shared denominator
- All data is `lp_`-prefixed in session state to avoid collision with other pages
"""
import sys
from pathlib import Path
from typing import Optional
import pandas as pd
import streamlit as st
parent_dir = Path(__file__).resolve().parent.parent
sys.path.append(str(parent_dir))
from data.learning_paths_data_loader import LearningPathsDataLoader
from utils.learning_paths_utils import (
merge_lesson_metrics, merge_method_wide, find_top_dropoffs,
get_overview_kpis, filter_by_paths, label_for_path, short_title,
load_lp_config,
)
from visualizations.learning_paths_charts import LearningPathsCharts
from visualizations.distribution_charts import DistributionCharts
from visualizations.demographic_charts import DemographicCharts
from agents.learning_paths_summary_agent import LearningPathsSummaryAgent
_VIEWS = ["Per-Path", "Method-Wide"]
def render_learning_paths(data_loader: LearningPathsDataLoader):
"""Main entry point for the Learning Paths page."""
st.title("π Learning Paths")
st.markdown(
"Analyze ordered lesson sequences β see how student engagement and sentiment "
"evolve as they progress through each learning path."
)
st.markdown("---")
cfg = load_lp_config()
charts = LearningPathsCharts()
brands = cfg.get("brands", [])
if not brands:
st.error("No brands configured for Learning Paths. Check `config/viz_config.json`.")
return
# ββ Filter panel βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("### π― Filters")
filter_col1, filter_col2, filter_col3 = st.columns([2, 2, 2])
with filter_col1:
brand = st.selectbox(
"Brand", options=brands,
index=0, key="lp_brand",
)
with filter_col2:
view_mode = st.radio(
"View Mode",
options=_VIEWS, index=0, horizontal=True,
key="lp_view_mode",
help=(
"**Per-Path**: each path's funnel resets to its own first-lesson count.\n\n"
"**Method-Wide**: one continuous funnel using a single denominator "
"(students who started Learning Path 1) β shows true end-to-end attrition."
),
)
with filter_col3:
# Path selector β populated after a brand is chosen
prev_brand_key = st.session_state.get("lp_fetch_key", (None,))[0]
prev_lesson_map = st.session_state.get("lp_lesson_map", pd.DataFrame())
if not prev_lesson_map.empty and prev_brand_key == brand:
available_paths = sorted(prev_lesson_map["learning_path_id"].unique().tolist())
path_labels_opts = {pid: label_for_path(pid, cfg) for pid in available_paths}
selected_paths = st.multiselect(
"Learning Paths (leave empty = all)",
options=available_paths,
default=[],
format_func=lambda pid: path_labels_opts[pid],
key="lp_selected_paths",
)
else:
selected_paths = []
st.info("Fetch data to populate path selector.")
st.markdown("---")
# ββ Fetch key & stale check βββββββββββββββββββββββββββββββββββββββββββββββ
fetch_key = (brand, view_mode)
has_data = (
st.session_state.get("lp_fetch_key") == fetch_key
and "lp_lesson_map" in st.session_state
and not st.session_state.get("lp_lesson_map", pd.DataFrame()).empty
)
fetch_col, info_col = st.columns([1, 3])
with fetch_col:
fetch_clicked = st.button("π Fetch Data", type="primary",
use_container_width=True, key="lp_fetch_btn")
with info_col:
if has_data:
n_lessons = len(st.session_state.get("lp_lesson_map", pd.DataFrame()))
st.success(f"β
Loaded **{n_lessons:,}** lessons for **{brand}**")
elif not fetch_clicked:
st.info("π Select a brand and click **Fetch Data** to load learning path metrics.")
if fetch_clicked:
_fetch_all(data_loader, brand, fetch_key)
st.rerun()
if not has_data and not fetch_clicked:
return
# ββ Load merged frames βββββββββββββββββββββββββββββββββββββββββββββββββββ
lesson_map = st.session_state.get("lp_lesson_map", pd.DataFrame())
per_path_df = st.session_state.get("lp_per_path", pd.DataFrame())
method_df = st.session_state.get("lp_method_wide", pd.DataFrame())
video_df = st.session_state.get("lp_video", pd.DataFrame())
sentiment_df = st.session_state.get("lp_sentiment", pd.DataFrame())
if view_mode == "Per-Path":
merged = merge_lesson_metrics(lesson_map, per_path_df, video_df, sentiment_df)
else:
merged = merge_method_wide(method_df, video_df, sentiment_df, cfg)
if merged.empty:
st.warning("No data returned. Check your Snowflake connection.")
return
# Apply path filter (Per-Path only)
if view_mode == "Per-Path" and selected_paths:
merged = filter_by_paths(merged, selected_paths)
# Add path labels
if "learning_path_id" in merged.columns:
merged["path_label"] = merged["learning_path_id"].apply(
lambda pid: label_for_path(pid, cfg)
)
# ββ Overview KPIs βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("### π Overview")
kpis = get_overview_kpis(merged)
k1, k2, k3, k4, k5, k6 = st.columns(6)
k1.metric("Method Starters", f"{kpis.get('total_students', 0):,}")
k2.metric("Avg Completion", f"{kpis.get('avg_completion_pct', 0):.1f}%")
k3.metric("Avg Sentiment", f"{kpis.get('avg_sentiment_score', 0):.2f}",
help="Scale: β2 (very negative) to +2 (very positive)")
k4.metric("Total Comments", f"{kpis.get('total_comments', 0):,}")
k5.metric("Learning Paths", f"{kpis.get('n_paths', 0)}")
k6.metric("Total Lessons", f"{kpis.get('n_lessons', 0)}")
st.markdown("---")
# ββ Headline: Dual-Axis Engagement βββββββββββββββββββββββββββββββββββββββ
st.markdown("### π― Engagement Journey")
if view_mode == "Per-Path":
path_ids = sorted(merged["learning_path_id"].unique()) \
if "learning_path_id" in merged.columns else []
if len(path_ids) > 1:
tab_labels = [label_for_path(pid, cfg) for pid in path_ids]
tabs = st.tabs(tab_labels)
for tab, pid in zip(tabs, path_ids):
with tab:
st.plotly_chart(
charts.create_dual_axis_engagement(merged, path_id=pid,
title=f"Completion vs Sentiment β {label_for_path(pid, cfg)}"),
use_container_width=True, key=f"lp_dual_{pid}",
)
elif path_ids:
st.plotly_chart(
charts.create_dual_axis_engagement(merged, path_id=path_ids[0]),
use_container_width=True, key="lp_dual_single",
)
else:
st.plotly_chart(
charts.create_dual_axis_engagement(merged),
use_container_width=True, key="lp_dual_all",
)
else:
col1, col2 = st.columns(2)
with col1:
st.plotly_chart(charts.create_method_funnel(merged),
use_container_width=True, key="lp_method_funnel")
with col2:
st.plotly_chart(charts.create_method_sentiment_journey(merged),
use_container_width=True, key="lp_method_sent")
st.markdown("---")
# ββ Completion Funnel βββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("### π Completion Funnel")
if view_mode == "Per-Path":
rate_col = "completion_rate"
x_col = "lesson_number" if "lesson_number" in merged.columns else "lesson_order"
st.plotly_chart(charts.create_completion_funnel(merged, x_col=x_col),
use_container_width=True, key="lp_completion_funnel")
else:
st.info("Method-Wide funnel shown in the Engagement Journey section above.")
st.markdown("---")
# ββ Video Engagement ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("### π¬ Video Completion Rate")
st.caption(
"Of students who *started* a lesson video, what percentage finished it? "
"This isolates whether the content itself holds attention."
)
x_col = "method_lesson_number" if (view_mode == "Method-Wide"
and "method_lesson_number" in merged.columns) else "lesson_order"
st.plotly_chart(charts.create_video_engagement(merged, x_col=x_col),
use_container_width=True, key="lp_video_chart")
st.markdown("---")
# ββ Volume Analysis βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("### π Volume Analysis")
st.caption("Total comments per lesson β shows where students are most engaged.")
x_col_vol = "method_lesson_number" if (view_mode == "Method-Wide"
and "method_lesson_number" in merged.columns) else "lesson_order"
st.plotly_chart(
charts.create_comment_volume_chart(merged, x_col=x_col_vol),
use_container_width=True, key="lp_volume_chart",
)
st.markdown("---")
# ββ Sentiment Journey βββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("### π¬ Sentiment Journey")
x_col = "method_lesson_number" if (view_mode == "Method-Wide"
and "method_lesson_number" in merged.columns) else "lesson_order"
col1, col2 = st.columns(2)
with col1:
st.plotly_chart(charts.create_sentiment_journey(merged, x_col=x_col),
use_container_width=True, key="lp_sent_journey")
with col2:
# Show stacked bar for first path (or single combined if method-wide)
focus_pid = sorted(merged["learning_path_id"].unique())[0] \
if "learning_path_id" in merged.columns else None
st.plotly_chart(
charts.create_sentiment_stacked_bar(
merged, x_col=x_col, path_id=focus_pid,
title=f"Sentiment Breakdown β {label_for_path(focus_pid, cfg)}"
if focus_pid else "Sentiment Breakdown"),
use_container_width=True, key="lp_sent_stacked",
)
with st.expander("π Sentiment Heatmap", expanded=False):
focus_pid = sorted(merged["learning_path_id"].unique())[0] \
if "learning_path_id" in merged.columns else None
st.plotly_chart(
charts.create_lesson_sentiment_heatmap(merged, path_id=focus_pid),
use_container_width=True, key="lp_heatmap",
)
st.markdown("---")
# ββ Intent Analysis βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("### π Intent Analysis")
metadata_df = st.session_state.get("lp_metadata", pd.DataFrame())
if view_mode == "Per-Path" and selected_paths:
metadata_df = metadata_df[metadata_df["learning_path_id"].isin(selected_paths)]
if metadata_df.empty or "intent" not in metadata_df.columns:
st.info("No intent data available. Load data first.")
else:
_render_intent_emotion_tabs(metadata_df, "intent", cfg, "lp_intent")
st.markdown("---")
# ββ Emotion Analysis ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("### π Emotion Analysis")
metadata_df_emo = st.session_state.get("lp_metadata", pd.DataFrame())
if view_mode == "Per-Path" and selected_paths:
metadata_df_emo = metadata_df_emo[metadata_df_emo["learning_path_id"].isin(selected_paths)]
has_emotions = (
not metadata_df_emo.empty
and "emotions" in metadata_df_emo.columns
and metadata_df_emo["emotions"].notna().any()
)
if not has_emotions:
st.info("No emotion data available. Emotions are extracted for newly processed comments.")
else:
_render_intent_emotion_tabs(metadata_df_emo, "emotion", cfg, "lp_emotion")
st.markdown("---")
# ββ Drop-off Analysis βββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("### β οΈ Top Drop-off Points")
rate_col = "completion_rate"
order_col = "method_lesson_number" if (view_mode == "Method-Wide"
and "method_lesson_number" in merged.columns) else "lesson_order"
dropoffs = find_top_dropoffs(merged, n=7, rate_col=rate_col, order_col=order_col)
if not dropoffs.empty:
st.plotly_chart(charts.create_dropoff_chart(dropoffs),
use_container_width=True, key="lp_dropoffs")
else:
st.info("No significant lesson-to-lesson drop-offs detected.")
st.markdown("---")
# ββ Demographics ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("### π₯ Demographics")
commenter_demo = st.session_state.get("lp_commenter_demo", pd.DataFrame())
student_demo = st.session_state.get("lp_student_demo", pd.DataFrame())
meta_for_demo = st.session_state.get("lp_metadata", pd.DataFrame())
demo_tab1, demo_tab2 = st.tabs(["π¬ Commenters", "π All Students"])
with demo_tab1:
if commenter_demo.empty:
st.info("No commenter demographic data available.")
else:
_render_demographics(commenter_demo, meta_for_demo, "commenter")
with demo_tab2:
if student_demo.empty:
st.info("No student demographic data available.")
else:
_render_demographics(student_demo, pd.DataFrame(), "student")
st.markdown("---")
# ββ AI Summary ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("### π€ AI Learning Journey Summary")
st.markdown(
"Generate an LLM-powered narrative describing the student experience "
"through this learning path β sentiment arcs, retention patterns, and "
"actionable recommendations for content designers."
)
summary_key = (brand, view_mode, tuple(sorted(selected_paths)))
summary_available = (
"lp_summary" in st.session_state
and st.session_state.get("lp_summary_key") == summary_key
and st.session_state["lp_summary"] is not None
)
gen_col, _ = st.columns([1, 3])
with gen_col:
gen_clicked = st.button("π§ Generate AI Summary", type="primary",
use_container_width=True, key="lp_gen_summary")
if gen_clicked:
comments_df = st.session_state.get("lp_comments", pd.DataFrame())
with st.spinner("Analysing learning path data with AIβ¦ this may take 20β40 secondsβ¦"):
agent = LearningPathsSummaryAgent()
focus_pid = sorted(merged["learning_path_id"].unique())[0] \
if "learning_path_id" in merged.columns and view_mode == "Per-Path" \
else None
result = agent.process({
"metrics": merged,
"comments": comments_df,
"brand": brand,
"path_id": focus_pid,
"path_label": label_for_path(focus_pid, cfg) if focus_pid else "Full Method",
})
st.session_state["lp_summary"] = result
st.session_state["lp_summary_key"] = summary_key
st.rerun()
if summary_available:
_render_summary(st.session_state["lp_summary"])
st.markdown("---")
# ββ Per-Lesson Drill-down βββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("### π Per-Lesson Detail")
st.caption("Expand any lesson to see the sentiment breakdown and sample comments.")
_render_lesson_cards(merged, data_loader, brand, cfg)
st.markdown("---")
# ββ Export CSV ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("### πΎ Export Data")
export_cols = [c for c in [
"brand", "learning_path_id", "path_label", "lesson_order", "lesson_content_id",
"content_title", "lesson_number", "students_completed", "denominator_students",
"completion_rate", "total_starts", "total_completions", "video_completion_rate",
"total_comments", "very_positive", "positive", "neutral",
"negative", "very_negative", "avg_sentiment_score",
] if c in merged.columns]
csv = merged[export_cols].to_csv(index=False)
st.download_button(
label="π₯ Download as CSV",
data=csv,
file_name=f"learning_paths_{brand}.csv",
mime="text/csv",
key="lp_csv_download",
)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Private helpers
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _fetch_all(loader: LearningPathsDataLoader, brand: str, fetch_key: tuple):
"""Run all queries and store results in session state."""
with st.spinner(f"Fetching learning path data for {brand}β¦"):
st.session_state["lp_lesson_map"] = loader.load_lesson_map(brand)
st.session_state["lp_per_path"] = loader.load_per_path_completion(brand)
st.session_state["lp_method_wide"] = loader.load_method_wide_completion(brand)
st.session_state["lp_video"] = loader.load_video_engagement(brand)
st.session_state["lp_sentiment"] = loader.load_lesson_sentiment(brand)
st.session_state["lp_metadata"] = loader.load_lesson_metadata(brand)
st.session_state["lp_commenter_demo"] = loader.load_lp_commenter_demographics(brand)
st.session_state["lp_student_demo"] = loader.load_lp_student_demographics(brand)
st.session_state["lp_fetch_key"] = fetch_key
# Invalidate prior summary when brand/mode changes
st.session_state.pop("lp_summary", None)
st.session_state.pop("lp_summary_key", None)
st.session_state["lp_drill_page"] = 1
def _render_lesson_cards(merged: pd.DataFrame, loader: LearningPathsDataLoader,
brand: str, cfg: dict):
"""Paginated lesson cards (10 per page). Comments fetched on expand."""
if merged.empty:
st.info("No lesson data available.")
return
per_page = 10
total = len(merged)
if "lp_drill_page" not in st.session_state:
st.session_state["lp_drill_page"] = 1
total_pages = max(1, (total + per_page - 1) // per_page)
if total > per_page:
pc1, pc2, pc3 = st.columns([1, 2, 1])
with pc1:
if st.button("β¬
οΈ Previous", key="lp_prev_top",
disabled=st.session_state["lp_drill_page"] == 1):
st.session_state["lp_drill_page"] -= 1
st.rerun()
with pc2:
pg = st.session_state["lp_drill_page"]
st.markdown(
f"<div style='text-align:center;padding-top:8px;'>"
f"Page {pg} / {total_pages} β {total:,} lessons</div>",
unsafe_allow_html=True,
)
with pc3:
if st.button("Next β‘οΈ", key="lp_next_top",
disabled=st.session_state["lp_drill_page"] >= total_pages):
st.session_state["lp_drill_page"] += 1
st.rerun()
start = (st.session_state["lp_drill_page"] - 1) * per_page
page_df = merged.iloc[start: start + per_page]
for _, row in page_df.iterrows():
_render_single_lesson_card(row, loader, brand, cfg)
if total > per_page:
pb1, pb2, pb3 = st.columns([1, 2, 1])
with pb1:
if st.button("β¬
οΈ Previous", key="lp_prev_bot",
disabled=st.session_state["lp_drill_page"] == 1):
st.session_state["lp_drill_page"] -= 1
st.rerun()
with pb2:
pg = st.session_state["lp_drill_page"]
st.markdown(
f"<div style='text-align:center;padding-top:8px;'>"
f"Page {pg} / {total_pages}</div>",
unsafe_allow_html=True,
)
with pb3:
if st.button("Next β‘οΈ", key="lp_next_bot",
disabled=st.session_state["lp_drill_page"] >= total_pages):
st.session_state["lp_drill_page"] += 1
st.rerun()
def _render_single_lesson_card(row: pd.Series, loader: LearningPathsDataLoader,
brand: str, cfg: dict):
"""Render one lesson expander card with metrics + on-demand comments."""
path_label = label_for_path(row.get("learning_path_id"), cfg)
order = int(row.get("lesson_order", 0))
title = short_title(row.get("content_title"), 60)
comp = row.get("completion_rate")
sent = row.get("avg_sentiment_score")
vcr = row.get("video_completion_rate")
comments_n = int(row.get("total_comments", 0))
sent_emoji = "βͺ"
if pd.notna(sent):
if sent >= 1.0: sent_emoji = "π’"
elif sent >= 0.0: sent_emoji = "π‘"
elif sent >= -1.0:sent_emoji = "π "
else: sent_emoji = "π΄"
header = (
f"{sent_emoji} {path_label} βΊ L{order:02d}: {title}"
f" | Completion: {comp*100:.1f}%" if pd.notna(comp) else
f"{sent_emoji} {path_label} βΊ L{order:02d}: {title}"
)
content_id = int(row.get("lesson_content_id", 0))
card_key = f"lp_card_{content_id}"
with st.expander(header, expanded=False):
m1, m2, m3, m4 = st.columns(4)
m1.metric("Completion", f"{comp*100:.1f}%" if pd.notna(comp) else "β")
m2.metric("Sentiment Score", f"{sent:.2f}" if pd.notna(sent) else "β")
m3.metric("Video Completion", f"{vcr*100:.1f}%" if pd.notna(vcr) else "β")
m4.metric("Comments", f"{comments_n:,}")
# Sentiment mini-bar
sent_cols = ["very_positive", "positive", "neutral", "negative", "very_negative"]
totals = {s: int(row.get(s, 0)) for s in sent_cols}
total_all = sum(totals.values())
if total_all > 0:
bar_parts = " | ".join(
f"{s.replace('_', ' ').title()}: {totals[s]:,} "
f"({totals[s]/total_all*100:.1f}%)"
for s in sent_cols if totals[s] > 0
)
st.caption(f"Sentiment distribution: {bar_parts}")
# On-demand sample comments
if comments_n > 0:
if st.button("π¬ Load Sample Comments", key=f"lp_load_comments_{content_id}"):
with st.spinner("Loading commentsβ¦"):
cache_key = f"lp_comments_{content_id}"
if cache_key not in st.session_state:
cdf = loader.load_lesson_comments(
brand, [content_id],
max_per_lesson=20,
)
st.session_state[cache_key] = cdf
cache_key = f"lp_comments_{content_id}"
if cache_key in st.session_state:
cdf = st.session_state[cache_key]
if not cdf.empty and "display_text" in cdf.columns:
for _, crow in cdf.iterrows():
sent_pol = crow.get("sentiment_polarity", "neutral")
emoji = {"very_positive": "π’", "positive": "π©",
"neutral": "π‘", "negative": "π ",
"very_negative": "π΄"}.get(sent_pol, "βͺ")
txt = str(crow.get("display_text", "")).strip()
if txt:
st.markdown(f"{emoji} {txt}")
def _render_intent_emotion_tabs(
metadata_df: pd.DataFrame,
analysis_type: str,
cfg: dict,
key_prefix: str,
):
"""Render Overall + per-path tabs for intent or emotion distribution."""
dist_charts = DistributionCharts()
path_ids = sorted(metadata_df["learning_path_id"].unique()) \
if "learning_path_id" in metadata_df.columns else []
tab_labels = ["Overall"] + [label_for_path(pid, cfg) for pid in path_ids]
tabs = st.tabs(tab_labels)
subsets = [metadata_df] + [
metadata_df[metadata_df["learning_path_id"] == pid] for pid in path_ids
]
titles = ["Overall"] + [label_for_path(pid, cfg) for pid in path_ids]
for i, (tab, subset, title) in enumerate(zip(tabs, subsets, titles)):
with tab:
col1, col2 = st.columns(2)
if analysis_type == "intent":
with col1:
st.plotly_chart(
dist_charts.create_intent_bar_chart(subset, f"Intent β {title}"),
use_container_width=True, key=f"{key_prefix}_bar_{i}",
)
with col2:
st.plotly_chart(
dist_charts.create_intent_pie_chart(subset, f"Intent β {title}"),
use_container_width=True, key=f"{key_prefix}_pie_{i}",
)
else:
with col1:
st.plotly_chart(
dist_charts.create_emotion_bar_chart(subset, f"Emotion β {title}"),
use_container_width=True, key=f"{key_prefix}_bar_{i}",
)
with col2:
st.plotly_chart(
dist_charts.create_emotion_pie_chart(subset, f"Emotion β {title}"),
use_container_width=True, key=f"{key_prefix}_pie_{i}",
)
def _render_demographics(
demo_df: pd.DataFrame,
metadata_df: pd.DataFrame,
demo_type: str,
):
"""Render age and experience distribution charts for commenters or students."""
demo_charts = DemographicCharts()
has_sentiment = demo_type == "commenter" and not metadata_df.empty
# Merge metadata with demo data for sentiment cross-tabs (commenters only)
merged_for_sent = pd.DataFrame()
if has_sentiment and "author_id" in metadata_df.columns and "user_id" in demo_df.columns:
meta = metadata_df.copy()
dem = demo_df.copy()
meta["_uid"] = meta["author_id"].astype(str)
dem["_uid"] = dem["user_id"].astype(str)
merged_for_sent = meta.merge(
dem[["_uid", "age_group", "experience_group"]],
on="_uid", how="left",
)
# ββ Summary metrics βββββββββββββββββββββββββββββββββββββββββββ
label = "Commenters" if demo_type == "commenter" else "Students"
total = len(demo_df)
with_age = (demo_df["age_group"] != "Unknown").sum() if "age_group" in demo_df.columns else 0
with_exp = (demo_df["experience_group"] != "Unknown").sum() if "experience_group" in demo_df.columns else 0
m1, m2, m3 = st.columns(3)
m1.metric(f"Total {label}", f"{total:,}")
m2.metric("With Age Data", f"{with_age:,} ({with_age/total*100:.0f}%)" if total else "0")
m3.metric("With Experience Data", f"{with_exp:,} ({with_exp/total*100:.0f}%)" if total else "0")
st.markdown("---")
# ββ Age Distribution ββββββββββββββββββββββββββββββββββββββββββ
st.markdown("#### π Age Distribution")
if "age_group" in demo_df.columns:
age_valid = demo_df[demo_df["age_group"] != "Unknown"]
if not age_valid.empty:
age_dist = age_valid["age_group"].value_counts().reset_index()
age_dist.columns = ["age_group", "count"]
age_dist["percentage"] = (age_dist["count"] / age_dist["count"].sum() * 100).round(2)
if has_sentiment and not merged_for_sent.empty and "age_group" in merged_for_sent.columns:
age_sent = _compute_demo_by_sentiment(merged_for_sent, "age_group")
col1, col2 = st.columns(2)
with col1:
st.plotly_chart(
demo_charts.create_age_distribution_chart(age_dist, f"Age Distribution β {label}"),
use_container_width=True, key=f"lp_{demo_type}_age_dist",
)
with col2:
if not age_sent.empty:
st.plotly_chart(
demo_charts.create_age_sentiment_chart(age_sent, f"Sentiment by Age β {label}"),
use_container_width=True, key=f"lp_{demo_type}_age_sent",
)
else:
st.plotly_chart(
demo_charts.create_age_distribution_chart(age_dist, f"Age Distribution β {label}"),
use_container_width=True, key=f"lp_{demo_type}_age_dist",
)
else:
st.info("No age data available.")
else:
st.info("Age data not loaded.")
st.markdown("---")
# ββ Experience Level Distribution βββββββββββββββββββββββββββββ
st.markdown("#### π― Experience Level Distribution")
if "experience_group" in demo_df.columns:
exp_valid = demo_df[demo_df["experience_group"] != "Unknown"]
if not exp_valid.empty:
exp_grouped = exp_valid["experience_group"].value_counts().reset_index()
exp_grouped.columns = ["experience_group", "count"]
exp_grouped["percentage"] = (exp_grouped["count"] / exp_grouped["count"].sum() * 100).round(2)
exp_detailed = pd.DataFrame()
if "experience_level" in demo_df.columns:
exp_det_valid = demo_df[demo_df["experience_level"].notna()]
if not exp_det_valid.empty:
exp_detailed = exp_det_valid["experience_level"].value_counts().reset_index()
exp_detailed.columns = ["experience_level", "count"]
exp_detailed["percentage"] = (
exp_detailed["count"] / exp_detailed["count"].sum() * 100
).round(2)
tab_det, tab_grp = st.tabs(["π Detailed (0β10)", "π Grouped"])
with tab_det:
if not exp_detailed.empty:
st.plotly_chart(
demo_charts.create_experience_distribution_chart(
exp_detailed, f"Experience (0β10) β {label}", use_groups=False
),
use_container_width=True, key=f"lp_{demo_type}_exp_det",
)
else:
st.info("No detailed experience data available.")
with tab_grp:
if has_sentiment and not merged_for_sent.empty and "experience_group" in merged_for_sent.columns:
exp_sent = _compute_demo_by_sentiment(merged_for_sent, "experience_group")
col1, col2 = st.columns(2)
with col1:
st.plotly_chart(
demo_charts.create_experience_distribution_chart(
exp_grouped, f"Experience Groups β {label}", use_groups=True
),
use_container_width=True, key=f"lp_{demo_type}_exp_grp",
)
with col2:
if not exp_sent.empty:
st.plotly_chart(
demo_charts.create_experience_sentiment_chart(
exp_sent, f"Sentiment by Experience β {label}", use_groups=True
),
use_container_width=True, key=f"lp_{demo_type}_exp_sent",
)
else:
st.plotly_chart(
demo_charts.create_experience_distribution_chart(
exp_grouped, f"Experience Groups β {label}", use_groups=True
),
use_container_width=True, key=f"lp_{demo_type}_exp_grp_only",
)
else:
st.info("No experience data available.")
else:
st.info("Experience data not loaded.")
def _compute_demo_by_sentiment(merged_df: pd.DataFrame, field: str) -> pd.DataFrame:
"""Return sentiment distribution per demographic group for a merged metadata+demo frame."""
valid = merged_df[
merged_df[field].notna() & (merged_df[field] != "Unknown")
& merged_df["sentiment_polarity"].notna()
]
if valid.empty:
return pd.DataFrame()
grp = valid.groupby([field, "sentiment_polarity"], as_index=False).size().rename(columns={"size": "count"})
grp["percentage"] = grp.groupby(field)["count"].transform(
lambda x: (x / x.sum() * 100).round(2)
)
return grp
def _render_summary(result: dict):
"""Render the LLM summary returned by LearningPathsSummaryAgent."""
if not result.get("success"):
st.error(f"AI analysis failed: {result.get('error', 'Unknown error')}")
return
summary = result.get("summary", {})
metadata = result.get("metadata", {})
st.markdown("---")
st.markdown("#### π Executive Summary")
st.info(summary.get("executive_summary", ""))
col1, col2 = st.columns(2)
with col1:
arc = summary.get("journey_arc", [])
if arc:
st.markdown("#### πΊοΈ Journey Arc")
for phase in arc:
st.markdown(
f"**{phase.get('phase', '')}** \n{phase.get('description', '')}"
)
st.markdown("")
sent_insights = summary.get("sentiment_insights", [])
if sent_insights:
st.markdown("#### π¬ Sentiment Insights")
for ins in sent_insights:
st.markdown(f"- {ins}")
highlights = summary.get("content_highlights", [])
if highlights:
st.markdown("#### β¨ Content Highlights")
for h in highlights:
st.markdown(f"- {h}")
with col2:
retention = summary.get("retention_insights", [])
if retention:
st.markdown("#### π Retention Insights")
for r in retention:
st.markdown(f"- {r}")
recs = summary.get("recommendations", [])
if recs:
st.markdown("#### π― Recommendations")
for rec in recs:
st.markdown(f"- {rec}")
with st.expander("βΉοΈ Analysis Metadata"):
mc1, mc2, mc3 = st.columns(3)
mc1.metric("Lessons Analysed", metadata.get("lessons_analyzed", 0))
mc2.metric("Model Used", metadata.get("model_used", "N/A"))
mc3.metric("Tokens Used", metadata.get("tokens_used", 0)) |