Files
JPMC-quant/02_quant_analysis.py

398 lines
9.4 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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, calculate_weighted_ranking_scores
from plots import plot_average_scores_with_counts, plot_top3_ranking_distribution, plot_character_ranking_distribution, plot_most_ranked_1_character, plot_weighted_ranking_score
return (
JPMCSurvey,
Path,
calculate_weighted_ranking_scores,
check_progress,
duration_validation,
mo,
plot_average_scores_with_counts,
plot_character_ranking_distribution,
plot_most_ranked_1_character,
plot_top3_ranking_distribution,
plot_weighted_ranking_score,
)
@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?
""")
return
@app.cell
def _(data, survey):
char_rank = survey.get_character_ranking(data)[0].collect()
return (char_rank,)
@app.cell
def _(char_rank, plot_character_ranking_distribution):
plot_character_ranking_distribution(char_rank, x_label='Character Personality', width=1000)
return
@app.cell
def _(mo):
mo.md(r"""
### 2. Which character personality is ranked number 1 the most?
""")
return
@app.cell
def _(
calculate_weighted_ranking_scores,
char_rank,
plot_weighted_ranking_score,
):
char_rank_weighted = calculate_weighted_ranking_scores(char_rank)
plot_weighted_ranking_score(char_rank_weighted, x_label='Voice', width=1000)
return
@app.cell
def _(char_rank, plot_most_ranked_1_character):
plot_most_ranked_1_character(char_rank, x_label='Character Personality', width=1000)
return
@app.cell(hide_code=True)
def _(mo):
mo.md(r"""
## Voice Ranking
""")
return
@app.cell
def _(data, survey):
v_18_8_3 = survey.get_18_8_3(data)[0].collect()
print(v_18_8_3.head())
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
def _(plot_top3_ranking_distribution, top3_voices):
plot_top3_ranking_distribution(top3_voices, x_label='Voice', width=1000)
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 (321 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"""
Lets 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"""
Lets 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()