import marimo __generated_with = "0.19.2" app = marimo.App(width="medium") @app.cell def _(): import marimo as mo import polars as pl from pathlib import Path from validation import check_progress, duration_validation from utils import JPMCSurvey, combine_exclusive_columns from plots import plot_average_scores_with_counts, plot_top3_ranking_distribution return ( JPMCSurvey, Path, check_progress, duration_validation, mo, plot_average_scores_with_counts, ) @app.cell(hide_code=True) def _(mo): mo.md(r""" # Load Data """) return @app.cell def _(Path, mo): RESULTS_FILE = 'data/exports/OneDrive_2026-01-21/Soft Launch Data/JPMC_Chase Brand Personality_Quant Round 1_January 21, 2026_Soft Launch_Labels.csv' QSF_FILE = 'data/exports/OneDrive_2026-01-21/Soft Launch Data/JPMC_Chase_Brand_Personality_Quant_Round_1.qsf' mo.md(f"**Dataset:** `{Path(RESULTS_FILE).name}`") return QSF_FILE, RESULTS_FILE @app.cell def _(JPMCSurvey, QSF_FILE, RESULTS_FILE): survey = JPMCSurvey(RESULTS_FILE, QSF_FILE) data_all = survey.load_data() data_all.collect() return data_all, survey @app.cell(hide_code=True) def _(mo): mo.md(r""" ## Data Validation """) return @app.cell def _(check_progress, data_all): check_progress(data_all) return @app.cell def _(data_all, duration_validation): duration_validation(data_all) return @app.cell(hide_code=True) def _(mo): mo.md(r""" ### ToDo: "straight-liner" detection and removal """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" --- # Data Filter Use to select a subset of the data for the following analysis """) return @app.cell def _(data_all, survey): data = survey.filter_data(data_all, age=None, gender=None, income=None, ethnicity=None, consumer=None) return (data,) @app.cell(hide_code=True) def _(mo): mo.md(r""" --- # Analysis """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" ## Character personality ranking 1. Which character personality is ranked best? 2. Which character personality is ranked number 1 the most? """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" ## Voice Ranking """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" Which 8 voices are chosen the most out of 18? """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" Which 3 voices are chosen the most out of 18? How many times does each voice end up in the top 3? ( this is based on the survey question where participants need to choose 3 out of the earlier selected 8 voices. So how often each of the 18 stimuli ended up in participants’ Top 3, after they first selected 8 out of 18. """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" Which voice is ranked best in the ranking question for top 3.? (so not best 3 out of 8 question) - E.g. 1 point for place 3. 2 points for place 2 and 3 points for place 1. The voice with most points is ranked best. """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" Which voice is ranked number 1 the most? (not always the voice with most points) - Each of the 350 participants gives exactly one 1st-place vote. - Total Rank-1 votes = 350. - Voices are sorted from most to least 1st-place votes. - The top 3 voices with the most Rank-1 votes are colored blue. - This can differ from the points-based winners (3–2–1 totals), because a voice may receive many 2nd/3rd places but fewer 1st places. """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" ## Voice Speaking Style - Perception Traits """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" How does each voice score for each “speaking style labeled trait”? Here you can find the speaking styles and traits: [Speaking Style Traits Quantitative test design.docx](https://voicebranding-my.sharepoint.com/:w:/g/personal/phoebe_voicebranding_ai/IQBfM_Z8PF98Qalz4lzIbJ3RAUCdc7waB32HZXCj7k3xfo0?e=rtFd27) - There are 4 speaking styles: Green, Blue, Orange, Red. - There are 16 traits distributed across the 4 speaking styles. """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" ## Voice Scale 1-10 """) return @app.cell def _(data, mo, plot_average_scores_with_counts, survey): vscales = survey.get_voice_scale_1_10(data)[0].collect() plot_average_scores_with_counts(vscales, x_label='Voice', width=1000) mo.md(f""" How does each voice score on a scale from 1-10? {mo.ui.plotly(plot_average_scores_with_counts(vscales, x_label='Voice', width=1000))} """) return @app.cell def _(mo): mo.md(r""" """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" ## Correlations Voice Speaking Styles <-> Voice Scale 1-10 """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" Let’s show how scoring better on these speaking styles correlates (or not) with better Voice Scale 1-10 evaluation. For each speaking style we show how the traits in these speaking styles correlate with Voice Scale 1-10 evaluation. This gives us a total of 4 correlation diagrams. Example for speaking style green: - Trait 1: Friendly | Conversational | Down-to-earth - Trait 2: Approachable | Familiar | Warm - Trait 3: Optimistic | Benevolent | Positive | Appreciative """) return @app.cell def _(mo): mo.md(r""" ### Total Results - [ ] 4 correlation diagrams """) return @app.cell def _(mo): mo.md(r""" ### Female / Male Voices considered seperately - [ ] 4 correlation diagrams considering each speaking style (4) and all female voice results. - [ ] 4 correlation diagrams considering each speaking style (4) and all male voice results. """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" ## Correlations Voice Speaking Styles <-> Voice Ranking Points """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" Let’s show how scoring better on these speaking styles correlates (or not) with better Vocie Ranking results. For each speaking style we show how the traits in these speaking styles correlate with voice ranking points. This gives us a total of 4 correlation diagrams. Example for speaking style green: - Trait 1: Friendly | Conversational | Down-to-earth - Trait 2: Approachable | Familiar | Warm - Trait 3: Optimistic | Benevolent | Positive | Appreciative """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" ### Total Results - [ ] 4 correlation diagrams """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" ### Female / Male Voices considered seperately - [ ] 4 correlation diagrams considering each speaking style (4) and all female voice results. - [ ] 4 correlation diagrams considering each speaking style (4) and all male voice results. """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" ## Correlation Heatmap all evaluations <-> voice acoustic data - [ ] Heatmap for male voices - [ ] Heatmap for female voices """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" ## Most Prominent Character Personality Traits """) return @app.cell(hide_code=True) def _(mo): mo.md(r""" The last question of the survey is about traits for the described character's personality. For each Character personality, we want to display the 8 most chosen character personality traits. This will give us a total of 4 diagrams, one for each character personality included in the test. - [ ] Bank Teller - [ ] Familiar Friend - [ ] The Coach - [ ] Personal Assistant """) return @app.cell def _(mo): mo.md(r""" --- # Results per subgroup Use the dropdown selector at the top to filter the data and generate all the plots again """) return if __name__ == "__main__": app.run()