Close Menu
    Trending
    • OpenAIs nya webbläsare ChatGPT Atlas
    • Creating AI that matters | MIT News
    • Scaling Recommender Transformers to a Billion Parameters
    • Hidden Gems in NumPy: 7 Functions Every Data Scientist Should Know
    • Is RAG Dead? The Rise of Context Engineering and Semantic Layers for Agentic AI
    • ChatGPT Gets More Personal. Is Society Ready for It?
    • Why the Future Is Human + Machine
    • Why AI Is Widening the Gap Between Top Talent and Everyone Else
    ProfitlyAI
    • Home
    • Latest News
    • AI Technology
    • Latest AI Innovations
    • AI Tools & Technologies
    • Artificial Intelligence
    ProfitlyAI
    Home Âť When A Difference Actually Makes A Difference
    Artificial Intelligence

    When A Difference Actually Makes A Difference

    ProfitlyAIBy ProfitlyAISeptember 10, 2025No Comments10 Mins Read
    Share Facebook Twitter Pinterest LinkedIn Tumblr Reddit Telegram Email
    Share
    Facebook Twitter LinkedIn Pinterest Email


    📍To enterprise decision-makers: As a knowledge scientist who taught at college and wrote two textbooks within the subject, I wish to share my data in bite-sized articles that can assist you navigate the world of information and AI with confidence and readability.

    ℹ️ This image means you may click on to be taught extra

    Since it is a bite-sized article, I’ll stick with the storyline and canopy the necessities in the primary textual content. However in case you are eager to be taught extra or go deeper, additional explanations can be found underneath ℹ️

    🔗To my fellow knowledge specialists: Alongside every article, I’ll share the total code, usually packaged as helpful helper features you may simply combine into your individual workflow.


    : you’re the CEO of a retail chain with two malls, A and B. You’re reviewing the quarterly report, the place a bar chart exhibits that Retailer A scores 80 out of 100 in buyer satisfaction whereas Retailer B scores 75. Must you replicate Retailer A’s practices and spend money on enhancing Retailer B?

    What if I advised you that in a single state of affairs, this motion might price your organization tens of millions, whereas in one other state of affairs, it’s precisely the appropriate transfer?

    The distinction between the 2 situations isn’t within the numbers you see—it’s within the numbers you don’t.

    🎯Within the subsequent 10 minutes, you’ll be taught:

    • How very completely different enterprise realities can conceal behind the identical bar chart
    • Three sensible steps to uncover the total story and keep away from expensive misinterpretations

    The Drawback with Summaries

    Enterprise selections usually depend on easy summaries proven in bar or line charts:

    • scores throughout merchandise
    • buyer satisfaction throughout shops
    • worker engagement throughout groups

    However summaries like this conceal vital particulars—the very particulars that may make or break your subsequent strategic transfer.

    Let’s return to the shop instance. If you think about the chart evaluating Retailer A and Retailer B, what do you see? Possible one thing like under: two bars, one a bit taller than the opposite.

    Right here’s the twist: three distinct enterprise situations—every requiring a special choice—might produce the very same bar chart 🤯.

    🔎Able to see what your knowledge isn’t telling you?

    What the Bar Chart Hides – The Remainder of the Story

    Let’s take a look at three very completely different enterprise realities that may conceal behind the identical bar chart.

    Situation 1: Small Pattern, Small Variance

    In Situation 1, each shops have comparatively small pattern sizes (n = 50) and low variance (customary deviation = 5).

    ℹ️ Variance and customary deviation (std) measure how unfold out the information is from the common.
    • Variance is the common of the squared variations from the imply. It provides a way of the general unfold of information factors, however its unit is squared, which makes it much less intuitive.
    • Customary deviation (std) is the sq. root of variance. As a result of it’s in the identical unit as the information (e.g., satisfaction factors), it’s a lot simpler to interpret immediately. For instance, it signifies that roughly two-thirds of buyer satisfaction scores are inside about 5 factors above or under the common.

    These particulars are invisible within the bar chart. However once we swap to another graph—the box-scatter plot—you may see every buyer’s rating as some extent, and it’s also possible to see the statistical take a look at consequence displayed within the nook.

    The graph above tells us:

    • Buyer scores are tightly clustered round every retailer’s imply.
    • The 5-point hole between shops is persistently seen.
    • Statistical testing (ANOVA) confirms the distinction is actual, not simply likelihood.

    💡Key perception: On this state of affairs, you’ll be proper to copy Retailer A’s observe and spend money on Retailer B’s enchancment.

    ℹ️ Consider ANOVA as a referee: it checks whether or not the distinction between teams is sufficiently big that it’s unlikely to be random noise.
    • ANOVA (Evaluation of Variance): Compares the averages of two or extra teams and asks, “Is that this hole bigger than what random likelihood would normally create?” If sure, we are saying the distinction is statistically vital
    • Different frequent assessments embody
      • T-test: Compares the technique of two teams.
      • Welch’s t-test: A variant of the t-test that handles teams with unequal variances.
      • Kruskal-Wallis take a look at: Just like ANOVA, however for knowledge that isn’t usually distributed; it compares the rankings of the teams somewhat than their averages.
    • Studying p-values (sensible information for enterprise):
      • The p-value tells you ways doubtless the noticed distinction is because of random likelihood.
      • Smaller p-values imply the distinction is much less more likely to be random:
        • p < 0.05 → moderately assured the distinction is actual
        • p < 0.01 → very assured the distinction is actual
        • p < 0.001 → extraordinarily assured the distinction is actual
      • If a statistical take a look at is not vital (i.e., p > 0.05). It doesn’t imply there isn’t any distinction between the teams. It simply signifies that, given the pattern measurement and variability, we can’t confidently say the distinction is actual—the noticed hole might be on account of random noise.
    • Tip for enterprise decision-makers: Choosing the proper statistical take a look at depends upon your knowledge kind, pattern measurement, and distribution. It’s all the time clever to seek the advice of your knowledge specialist to make sure the take a look at in addition to the interpretation of its outcomes match your state of affairs.

    📦Tip for fellow knowledge specialist: The above graph is simple to make with the code under. Along with customising the looks, you may select between completely different statistical assessments appropriate on your knowledge, too. Pls try MLarena docs on github for particulars.

    from mlarena.utils.plot_utils import plot_box_scatter
    
    fig, ax = plot_box_scatter(scenario_a, 
                               x='retailer', 
                               y= 'satisfaction', 
                               show_stat_test=True, 
                               stat_test='anova',  
                               palette = colours)

    Situation 2: Small Pattern, Massive Variance

    In Situation 2, each shops nonetheless have small pattern sizes (n = 50) and the identical imply scores (80 for Retailer A, 75 for Retailer B). However now, buyer satisfaction scores have excessive variance. This modifications the story dramatically:

    • Whereas bar chart will look precisely the identical for the 2 situations, from the above box-scatter plot you may inform that knowledge factors are extra broadly scattered for state of affairs 2.
    • The distinction between two shops is now exhausting to differentiate from random noise.
    • In line with this instinct mirrored from the plot, statistical evaluation exhibits the distinction is not statistically vital.
    • Despite the fact that the means are an identical to Situation 1, we can’t confidently conclude that Retailer A really outperforms Retailer B.

    💡Key perception: The identical imply distinction can inform utterly completely different tales relying on knowledge variability.

    What To Do With Noisy Information?

    How do you make data-driven selections then, when your knowledge is noisy (i.e., has excessive variance)? Situation 3 offers the reply.

    In Situation 3, we preserve the identical excessive variance as Situation 2 however dramatically enhance the pattern measurement. This demonstrates the ability of bigger datasets:

    • Information factors stay broadly scattered (identical excessive variance as Situation 2)
    • Nonetheless, the bigger pattern measurement offers far more statistical energy
    • With extra knowledge factors, we are able to now distinguish the sign from the noise: Statistical evaluation exhibits the distinction IS statistically vital regardless of the excessive variance
    • The bigger pattern provides us confidence that Retailer A really outperforms Retailer B

    💡Key perception: When variance is excessive, bigger pattern sizes can enhance our capability to detect an actual distinction.

    ℹ️ Statistical energy is the power of a take a look at to detect a distinction when one truly exists.
    • Low energy (small, noisy samples): Even when an actual distinction exists, the take a look at might fail to detect it — like making an attempt to identify a faint sign on a fuzzy radio
    • Energy and pattern measurement: One of the crucial sensible methods to extend energy is to gather extra knowledge. For instance, in Situation 3, we saved the identical excessive variance as Situation 2 however elevated the pattern measurement tenfold. That further knowledge gave us the statistical energy to separate sign from noise and confidently conclude that Retailer A outperformed Retailer B.
    • How large is sufficiently big? Nice query. The reply depends upon the variability in your knowledge and the scale of the distinction you care about. Keep tuned, within the subsequent bite-sized article, I’ll share a sensible information for enterprise decision-makers on energy and pattern measurement so when you may have “sufficient knowledge” to behave with confidence.

    📦Tip for fellow knowledge specialists: I’ll introduce easy-to-use features on energy and sensitivity evaluation in a future bite-sized article.

    When a Vital End result Isn’t a Large Deal

    Evaluating Situation 1 and Situation 3, would you say that since each present 5-point variations which are statistically vital, the 2 situations are primarily the identical?

    The reply is an enormous NO ⛔

    • Situation 1:
      • The 5-point distinction represents 100% of the usual deviation — a really robust impact.
      • 👉 Suggests a main operational distinction value rapid replication.
    • Situation 3:
      • The identical 5-point distinction is barely 25% of the usual deviation — a small impact.
      • 👉 Signifies solely a modest benefit that will not justify large-scale modifications.

    💡 Key perception: Statistical significance tells you whether or not a distinction is actual. Impact measurement tells you whether or not that distinction is sufficiently big to matter for enterprise.

    ℹ️ Impact measurement measures the magnitude of the distinction, not simply whether or not it exists.
    • It places the distinction in context of the variability in your knowledge (e.g., a 5-point hole can look big in case your knowledge is tightly clustered, or tiny in case your knowledge could be very unfold out).
    • Totally different measures exist (Cohen’s d, Pearson’s r, odds ratios, and so on.), however the core concept is similar: how large is the influence?
    • For enterprise, impact measurement helps determine whether or not a result’s value appearing on — not simply whether or not it passes a statistical take a look at.
    • I’ll clarify impact measurement extra in a future bite-sized article.

    📦Tip for fellow knowledge specialists: You guessed it, I’ve easy-to-use features on effect-size to share with you too in a future article.

    💡Key perception: Don’t assume all statistically vital outcomes deserve the identical response—the scale of the impact issues for useful resource allocation.

    Put It All Collectively

    Key takeaways and actionable steps for enterprise choice makers:

    🚫 What NOT to do:

    • Don’t make selections primarily based solely on imply variations
    • Don’t assume an identical means symbolize an identical enterprise conditions

    ✅ What TO do:

    1. All the time request distribution data alongside means (e.g., field plots, scatter plots, or variance metrics equivalent to customary deviation)
    2. Ask for statistical significance testing earlier than concluding that noticed variations are actionable
    3. Ask for impact measurement to know whether or not statistically vital variations justify the price of motion

    🎁 Bonus level: When outcomes are inconclusive on account of excessive variance, take into account gathering bigger samples to extend statistical energy and convey readability.

    🎯 Backside line: The identical 5-point imply distinction can justify rapid motion (Situation 1), require extra knowledge assortment (Situation 2), or verify motion with excessive confidence however modest influence (Situation 3). Understanding knowledge variability, statistical significance, and impact measurement prevents expensive misinterpretations of your enterprise metrics.

    🔮 What’s subsequent: I’ll write extra bite-sized articles illustrating key ideas in Information and AI for enterprise decision-making. Impact measurement, statistical assessments and statistical energy which we touched on on this article are all on the listing. Let me know what else you’d prefer to see subsequent 🤗


    I write about knowledge, ML, and AI for problem-solving. You may as well discover me on 💼LinkedIn | 😺GitHub | 🕊️Twitter/


    Until in any other case famous, all photos are by the creator.



    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Previous ArticleWhy Task-Based Evaluations Matter | Towards Data Science
    Next Article DoE selects MIT to establish a Center for the Exascale Simulation of Coupled High-Enthalpy Fluid–Solid Interactions | MIT News
    ProfitlyAI
    • Website

    Related Posts

    Artificial Intelligence

    Creating AI that matters | MIT News

    October 21, 2025
    Artificial Intelligence

    Scaling Recommender Transformers to a Billion Parameters

    October 21, 2025
    Artificial Intelligence

    Hidden Gems in NumPy: 7 Functions Every Data Scientist Should Know

    October 21, 2025
    Add A Comment
    Leave A Reply Cancel Reply

    Top Posts

    How to Select the 5 Most Relevant Documents for AI Search

    September 19, 2025

    The CNN That Challenges ViT

    May 6, 2025

    Vana is letting users own a piece of the AI models trained on their data | MIT News

    April 4, 2025

    Metas AI-app exponerar privata konversationer

    June 15, 2025

    How to Build Guardrails for Effective Agents

    October 19, 2025
    Categories
    • AI Technology
    • AI Tools & Technologies
    • Artificial Intelligence
    • Latest AI Innovations
    • Latest News
    Most Popular

    Evaluating Your RAG Solution | Towards Data Science

    September 17, 2025

    Want Better Clusters? Try DeepType | Towards Data Science

    May 3, 2025

    Advanced Topic Modeling with LLMs

    July 21, 2025
    Our Picks

    OpenAIs nya webbläsare ChatGPT Atlas

    October 22, 2025

    Creating AI that matters | MIT News

    October 21, 2025

    Scaling Recommender Transformers to a Billion Parameters

    October 21, 2025
    Categories
    • AI Technology
    • AI Tools & Technologies
    • Artificial Intelligence
    • Latest AI Innovations
    • Latest News
    • Privacy Policy
    • Disclaimer
    • Terms and Conditions
    • About us
    • Contact us
    Copyright Š 2025 ProfitlyAI All Rights Reserved.

    Type above and press Enter to search. Press Esc to cancel.