Segmenting Customers by Unmet Needs: A Senior Product Manager's Playbook

This skill teaches you how to group customers into segments based on shared patterns of underserved outcomes rather than demographics, so you can target product strategy, positioning, and roadmap decisions at the clusters of people who actually want the same things.

Start with quantitative outcome satisfaction data from a representative customer survey. Calculate opportunity scores for each desired outcome, then cluster respondents who share the same pattern of underserved outcomes using factor analysis or k-means clustering. Label each segment by its dominant unmet needs. Validate segments by checking they are sizable, distinct, and actionable for product and go-to-market decisions.

Outcome: You produce a set of 3-6 customer segments defined entirely by which outcomes are underserved, each segment large enough and distinct enough to anchor a differentiated product strategy, pricing tier, or go-to-market campaign.

Synthesized from public framework references and reviewed for accuracy.

ProductAdvanced4-8 hours over 1-2 weeks (including survey design, data collection, and analysis)

Prerequisites

  • Completed set of desired outcome statements for the core functional job (see Writing Desired Outcome Statements)
  • Quantitative survey data with importance and satisfaction ratings from 100+ respondents
  • Familiarity with opportunity scoring (importance + max(importance - satisfaction, 0))
  • Basic competency with spreadsheet pivot tables or a statistical tool (R, Python, SPSS) for clustering
  • Understanding of the Jobs-to-be-Done framework and job mapping concepts

Overview

Most product teams segment customers by demographics, company size, or persona labels like 'Marketing Mary.' These segments feel neat in a slide deck but rarely tell you what to build. Two enterprise marketing directors at similarly sized companies may have completely different unmet needs, while a startup founder and a Fortune 500 VP may share the exact same frustrations. Demographic segments describe who people are. Outcome-based segments describe what people need, and that distinction is the difference between a roadmap driven by assumptions and one driven by demand.

Segmenting customers by unmet needs sits at the analytical core of the Jobs-to-be-Done (JTBD) Framework. After you have defined the core functional job, written desired outcome statements, and identified which outcomes are underserved, this skill takes those quantitative opportunity scores and asks a new question: do all customers struggle with the same outcomes, or do distinct clusters exist? Almost always, clusters exist. One group may desperately need speed. Another may need accuracy. A third may need both but not care about cost. Surfacing those clusters lets a senior product manager stop treating the market as a monolith and start making targeted bets.

The concrete artifact you produce is a segment map: a table or visual showing 3-6 named segments, each defined by its dominant underserved outcomes, sized by percentage of the market, and profiled with enough demographic or firmographic overlay data to make the segments findable in the real world. This artifact feeds directly into product strategy and roadmap decisions, positioning, pricing, and feature prioritization. When done well, outcome-based segmentation is the single most leveraged analysis a senior product manager can perform, because every subsequent decision inherits its clarity.

The skill is rated Advanced not because the math is exotic, but because it requires judgment at every step: how many segments to extract, how to interpret ambiguous clusters, and how to translate statistical output into strategic narrative. Statistical tools do the clustering. You do the thinking.

How It Works

Traditional segmentation starts with observable traits (industry, company size, geography, job title) and hopes that people who look alike also want alike. Outcome-based segmentation inverts the process. It starts with what people want, groups them by shared wanting, and only then checks whether observable traits can predict group membership. The inversion matters because it guarantees every segment is actionable for product decisions by definition, since the segments literally are bundles of product needs.

The underlying mechanism is straightforward. You survey a representative sample of customers (or potential customers) who share the same core functional job. For each desired outcome statement, respondents rate importance and satisfaction on matching scales, typically 1-5 or 1-10. You then compute an opportunity score for each outcome per respondent. The opportunity algorithm, importance plus the gap between importance and satisfaction (floored at zero), produces a single number that captures unmet need intensity. At this point you have a matrix: rows are respondents, columns are outcome opportunity scores.

Clustering algorithms (k-means, hierarchical, or latent class analysis) then look for groups of respondents whose columns move together. If 120 of your 400 respondents all score high on speed-related outcomes and low on accuracy-related outcomes, the algorithm surfaces that pattern as a cluster. You run the analysis for different numbers of clusters (typically 3 through 7) and evaluate which solution produces segments that are internally cohesive, mutually distinct, and large enough to matter. Statistical fit metrics like silhouette scores or BIC help, but the final call is strategic: does this segmentation unlock a decision you could not make before?

Once you have segments, you profile them. You overlay the demographic, firmographic, and behavioral data you collected in the same survey (role, industry, current solution, budget, channel preferences) and look for correlations. The goal is not to replace the outcome-based definition with demographics, but to build a 'finder profile' so sales, marketing, and product teams can identify which segment a new prospect likely belongs to without re-surveying them. A segment defined by 'needs speed and low error rates for the monitoring step of the job' might correlate with 'operations managers at companies with 50-200 employees in manufacturing.' The outcome definition tells you what to build. The demographic overlay tells you where to find them.

This approach works because customer needs are more stable than customer attributes. Job titles change, companies reorganize, industries blur. But the desire to minimize the time it takes to verify accuracy of a financial forecast stays remarkably constant. Segments built on stable needs remain valid longer, reducing the cost of re-segmentation and giving product strategy a durable foundation. The Jobs-to-be-Done (JTBD) Framework treats outcome-based segmentation as the bridge between understanding what customers want and deciding what to build next. Without this step, opportunity scores describe the average customer, and the average customer is often a fiction that represents nobody well.

Step-by-Step

  1. Step 1: Prepare your outcome survey data

    Gather the quantitative survey results where respondents rated each desired outcome statement on both importance and satisfaction. You need at least 100 completed responses, and ideally 200-400, to produce stable clusters. Clean the data by removing respondents who gave identical ratings to every outcome (straight-liners), who completed the survey in under one-third of the median time, or who left more than 20% of outcomes unrated. ).

    Verify that your outcome statements are consistently worded and map to the same job step structure you used in your job map.

    Tip: If you have fewer than 100 clean responses, do not attempt statistical clustering. Instead, manually sort respondents into groups by eyeballing their top 5 underserved outcomes. The manual approach is less rigorous but still far more useful than demographic segmentation.

  2. Step 2: Calculate opportunity scores per respondent per outcome

    For each respondent and each outcome, calculate the opportunity score using the formula: Opportunity = Importance + max(Importance - Satisfaction, 0). This means an outcome rated 9 importance and 3 satisfaction scores 9 + (9 - 3) = 15, while an outcome rated 9 importance and 9 satisfaction scores 9 + 0 = 9. The formula amplifies underserved outcomes (where importance exceeds satisfaction) and compresses well-served ones. Build a new matrix where rows are respondents and columns are opportunity scores for each outcome.

    This matrix is the input to your clustering algorithm. Double-check a few rows by hand to confirm the formula is working correctly, because a single cell-reference error will propagate through every cluster.

    Tip: Normalize your importance and satisfaction scales before computing if they were collected on different scales (e.g., importance on 1-5 and satisfaction on 1-10). Convert both to a 0-10 scale first.

  3. Step 3: Reduce dimensionality if you have many outcomes

    If your outcome set has more than 25-30 outcomes, clustering algorithms can struggle with noise and high dimensionality. Run a principal component analysis (PCA) or factor analysis on the opportunity score matrix to reduce the columns to a smaller number of factors, typically 5-10 components that explain 70-80% of the variance. ' Use the factor scores as your clustering input instead of raw opportunity scores. If you have fewer than 25 outcomes, you can skip this step and cluster directly on the opportunity scores.

    Label each factor by examining which outcomes load heavily on it, because you will need these labels later when naming your segments.

    Tip: If PCA feels daunting, a pragmatic alternative is to manually group your outcomes by job step (from your job map) and average the opportunity scores within each group. This gives you 5-8 composite scores to cluster on, which is often good enough.

  4. Step 4: Run clustering analysis for multiple k values

    Apply a clustering algorithm to your respondent-by-factor (or respondent-by-outcome) matrix. K-means is the most common choice because it is available in Excel add-ins, Google Sheets plugins, R, Python, and SPSS. Run the algorithm for k = 3, 4, 5, 6, and 7 clusters. For each k value, record the within-cluster sum of squares (inertia), the silhouette score (how well each respondent fits its assigned cluster versus the next-best cluster), and the size of the smallest cluster.

    25, no cluster smaller than 10% of the sample, and clear separation between cluster centers on at least two or three factors. Plot the silhouette scores and the elbow curve to narrow down to two candidate k values.

    Tip: If two k values look statistically similar, choose the one that produces segments you can explain in a sentence each. A 4-segment solution where every segment has a clear name beats a 5-segment solution where two segments feel like random noise.

  5. Step 5: Interpret and label each segment

    For your chosen k value, examine the cluster centers (the average opportunity score for each outcome or factor within each segment). Identify the 3-5 outcomes where each segment scores dramatically higher than the overall average. These are the segment's defining unmet needs. Name each segment using a descriptive label tied to those needs, not a persona name.

    Good labels sound like 'Speed-Starved Executors' or 'Accuracy-First Verifiers,' capturing both the need and the job context. Bad labels sound like 'Segment A' or 'Power Users,' which describe behavior but not need. Write a one-paragraph profile for each segment summarizing its top underserved outcomes, how it differs from the other segments, and what kind of product experience would resonate. This narrative is the bridge between statistical output and strategic conversation.

    Tip: Test your labels on a colleague who was not involved in the analysis. If they can guess what the segment needs from the name alone, the label is working. If they need a paragraph of explanation, simplify the name.

  6. Step 6: Profile segments with demographic and behavioral overlays

    Cross-tabulate each segment against the demographic, firmographic, and behavioral variables in your survey: job title, industry, company size, years of experience, current solution used, budget range, how they first heard about products in this category. Use chi-squared tests or simple percentage comparisons to identify which observable traits correlate with segment membership. You are building a 'finder profile' so that sales reps, marketers, and product managers can estimate which segment a prospect belongs to without running a new survey. Not every segment will have a clean demographic fingerprint, and that is fine.

    Document where the correlation is strong and where it is weak. A segment that skews heavily toward mid-market manufacturing companies is easy to target. A segment that is demographically diffuse needs different go-to-market tactics, like self-selection questions in onboarding flows.

    Tip: Add 2-3 self-classification questions to your original survey ('Which of these priorities matters most to you?') that map to your expected segments. These become lightweight segment identifiers you can reuse in onboarding, lead scoring, and feature flagging.

  7. Step 7: Size each segment and estimate market value

    Calculate the percentage of your survey sample in each segment and extrapolate to your total addressable market. If Segment 2 contains 28% of respondents and your TAM is 50,000 potential customers, Segment 2 represents roughly 14,000 potential customers. Estimate revenue potential by multiplying segment size by average deal value or ARPU for that segment's likely tier. This sizing exercise is critical because it determines whether a segment is worth targeting with a dedicated product strategy or just too small to justify the investment.

    Document the confidence range of your estimates, because survey samples introduce error. A segment that is 8% of a 200-person survey could be anywhere from 4% to 14% of the real market at a 95% confidence level.

    Tip: If a segment is large and underserved but your product barely addresses its core needs today, flag it as a growth opportunity. If a segment is small but perfectly served by your existing product, flag it as a retention priority. Size and fit together determine strategy.

  8. Step 8: Validate segments with qualitative checks

    Select 3-5 respondents from each segment and conduct brief follow-up interviews, 20-30 minutes each. Walk through their top underserved outcomes and confirm the survey data matches their lived experience. Ask how they currently cope with those unmet needs, what workarounds they use, and what an ideal solution would look like. This step catches two common failure modes: survey artifacts (where the clustering picked up response-style differences rather than real need differences) and mislabeling (where your segment name does not match how customers describe their own needs).

    Adjust segment labels and profiles based on what you hear. If a segment falls apart under qualitative scrutiny, merge it with the closest neighbor and re-examine.

    Tip: Use the interviews to collect direct quotes that bring each segment to life in stakeholder presentations. 'I spend 40 minutes every morning re-checking numbers because one error costs us $50K' is more persuasive than 'Segment 3 scores 14.2 on outcome #17.'

  9. Step 9: Assemble the segment map and present to stakeholders

    Build a single-page segment map that shows each segment's name, size, top 3-5 underserved outcomes, demographic fingerprint, current solution, and strategic recommendation (target, monitor, or deprioritize). Include a 2x2 or scatter plot visualizing segments along two key dimensions, such as 'speed needs' versus 'accuracy needs,' to make the distinctions intuitive. Present the map to product leadership, marketing, and sales, walking through each segment with specific quotes and data points. End with a recommendation on which segment(s) to prioritize for the next product cycle and why.

    The deliverable should be concrete enough that a designer could start sketching solutions for the priority segment the same week.

    Tip: Prepare for the pushback that outcome-based segments 'do not map to our current account structure.' Acknowledge it, then show the overlay data from Step 6 and explain that outcome segments supplement rather than replace existing customer classifications.

Examples

Example: B2B Project Management SaaS (Mid-Market Focus)

A senior product manager at a project management SaaS company surveyed 320 mid-market customers who all share the core job 'manage cross-functional projects to deliver outcomes on time and within budget.' The survey covered 35 desired outcome statements across 8 job steps. The product team had been segmenting by industry (tech, healthcare, financial services) but found that feature requests did not align neatly with those industry labels.

After cleaning 22 straight-liner responses, the PM computed opportunity scores for all 35 outcomes across 298 respondents. PCA reduced the 35 outcomes to 7 factors: planning speed, resource visibility, risk detection, stakeholder communication, dependency tracking, status reporting, and post-project learning. 31. ' Demographic overlays revealed that Resource Optimizers skewed toward companies with 200-500 employees running 10+ concurrent projects, while Velocity Seekers skewed toward smaller teams under 100 employees.

The PM recommended targeting Resource Optimizers for the next two quarters because the segment was largest, most underserved, and aligned with a planned capacity-planning feature. This decision replaced a previous roadmap item targeting 'healthcare customers' that the industry-based segmentation had suggested.

Example: B2C Personal Finance App (Consumer Market)

A senior product manager at a personal finance app surveyed 450 users who share the core job 'manage personal finances to build long-term financial security.' The survey included 22 desired outcome statements. The team had been using age-based cohorts (Gen Z, Millennials, Gen X) for segmentation, but engagement data showed that age was a poor predictor of feature usage.

Opportunity scores were computed across all 22 outcomes for 412 clean responses. Because the outcome count was under 25, clustering ran directly on the opportunity score matrix without PCA. 28, smallest segment at 22%. ' The demographic overlay showed Automation Seekers were evenly distributed across age groups, disproving the hypothesis that younger users wanted automation most.

Goal Planners skewed toward users who had been on the app less than 6 months, suggesting new users have unmet onboarding needs around goal-setting. The PM prioritized Insight Hunters for the next release cycle because their unmet needs aligned with a planned analytics dashboard, and the segment's higher-than-average subscription tier made the revenue case clear.

Example: B2B Enterprise Security Platform (Large Enterprise)

A senior product manager at an enterprise security platform needed to reconcile conflicting feedback from large customers. Some CISOs wanted faster threat detection. Others wanted better compliance reporting. The team surveyed 180 security decision-makers at companies with 1,000+ employees, covering 28 desired outcome statements related to the core job 'protect organizational assets from security threats while maintaining operational efficiency.'

After cleaning, 163 responses remained. PCA compressed 28 outcomes into 6 factors: detection speed, false positive reduction, compliance automation, incident response coordination, vendor consolidation, and team skill development. 29). The PM chose k=4 because the fifth cluster in the k=5 solution contained only 11% of respondents and its profile overlapped heavily with another cluster.

The four segments: 'Speed-First Defenders' (31%, dominated by detection speed and incident response), 'Compliance Drivers' (26%, dominated by compliance automation and audit readiness), 'Signal Clarifiers' (24%, dominated by false positive reduction and alert fatigue), and 'Platform Consolidators' (19%, dominated by vendor consolidation and total cost of ownership). Firmographic overlays showed Compliance Drivers concentrated in financial services and healthcare, industries with heavy regulatory burden. Speed-First Defenders appeared across all industries. The PM recommended a dual-segment strategy: build compliance automation features for the Compliance Drivers segment (high willingness to pay, clear ROI story) while improving detection speed for Speed-First Defenders (largest segment, strong competitive differentiation angle).

The two segments required different sales decks, different demo scripts, and different pricing justification narratives, which the marketing team adopted the following quarter.

Example: Small Team Using Manual Clustering (Early-Stage Startup)

A senior product manager at a seed-stage HR tech startup had only 85 survey responses from HR managers who share the job 'hire qualified candidates efficiently while ensuring fair evaluation.' With 18 outcome statements and no budget for statistical software, the PM needed a practical approach to outcome-based segmentation without formal clustering tools.

The PM calculated opportunity scores in a Google Sheet for all 18 outcomes across 85 respondents, then sorted respondents by their top 3 highest-scoring outcomes. Three natural groupings emerged through manual inspection. ' Without formal cluster validation, the PM ran 5 brief phone calls per group to verify the patterns held. Four of five Volume Handlers confirmed that their daily pain was drowning in applications.

The demographic overlay was simple: Volume Handlers tended to be at companies hiring 20+ roles simultaneously, while Candidate Advocates tended to be at companies competing for scarce technical talent. The startup chose to target Fairness Guardians first because the founder had deep expertise in structured interviewing and the segment aligned with the product's existing scorecard feature. This manual approach took about 6 hours total and, while less rigorous than algorithmic clustering, produced a segmentation that directly informed the next three months of feature development.

Best Practices

  • Collect importance and satisfaction ratings separately for every outcome, not a single 'how well is this met?' score. A single-question format cannot distinguish between an outcome that is unimportant and satisfied versus one that is important and satisfied. The two-question format is what makes opportunity scoring, and therefore outcome-based segmentation, work. Skipping this means your clusters will reflect importance patterns rather than unmet need patterns.

  • Use at least 100 clean survey responses before attempting clustering, and aim for 200-400 when feasible. Below 100, clusters become unstable, meaning re-running the same algorithm produces different groupings each time. A senior product manager who presents unstable segments to leadership will lose credibility the first time the numbers shift. Test stability by re-running your chosen k on a random 80% subsample five times and checking that the same general segments emerge.

  • Always interpret segments through the lens of your core functional job, not through feature preferences. A segment should be named after the part of the job it struggles with ('monitoring accuracy,' 'setup speed'), not after the feature it requests ('needs dashboards,' 'wants API access'). Feature-based segments become obsolete when technology changes. Need-based segments remain valid for years.

  • Run the clustering for multiple k values (3-7) and evaluate each solution against three criteria: statistical fit (silhouette score), minimum segment size (no segment below 10%), and strategic clarity (can you name and differentiate each segment in one sentence?). Choosing k based only on statistical fit often produces a solution that is mathematically optimal but strategically useless, with segments that differ on obscure outcomes nobody can act on.

  • Profile each segment with demographic overlays, but never let the overlays become the definition. The purpose of the overlay is targeting (finding segment members in the wild), not understanding. If you catch yourself saying 'the small business segment' instead of 'the speed-starved segment,' you have drifted from needs back to demographics, and the segmentation's strategic value is eroding.

  • Refresh your segmentation every 12-18 months, or whenever a major market shift occurs (new competitor, regulatory change, technology disruption). Outcome-based segments are more stable than demographic ones, but they are not permanent. A segment that was large and underserved two years ago may now be well-served by a competitor who read the same data you did.

  • Tie each segment directly to a roadmap action. A segment analysis that sits in a slide deck and never influences a prioritization decision is waste. Before presenting, draft a one-sentence strategy recommendation for each segment: 'Target with dedicated feature set,' 'Serve with current product, monitor for churn,' or 'Deprioritize and redirect resources.' If you cannot write that sentence, the segmentation is not yet actionable.

Common Mistakes

Clustering on importance scores alone instead of opportunity scores

Correction

Importance-only clustering groups customers by what they care about, not by what is unmet. Two respondents who both rate 'minimize time to verify accuracy' as highly important may end up in the same cluster even though one is perfectly satisfied and the other is deeply frustrated. Use opportunity scores (importance + gap) as the clustering input, because your product strategy needs to target unmet needs, not just important ones. The diagnostic signal is segments that look interesting but do not suggest clear product actions.

If every segment 'cares about accuracy,' you probably clustered on importance.

Choosing the number of segments based only on the elbow method or statistical fit

Correction

The elbow method often suggests a k value that produces segments too fine-grained to act on or too coarse to differentiate. A 7-cluster solution might score higher on silhouette but produce three segments that are nearly identical in their unmet needs. After narrowing to 2-3 candidate k values using statistics, evaluate each solution by asking: can I name every segment distinctly? Is the smallest segment big enough to warrant dedicated investment?

Does any segment lack a clear 'what to build' implication? Strategic utility should break ties, not statistical precision.

Skipping the qualitative validation step because the data 'looks clean'

Correction

Survey data always contains artifacts. Some respondents interpret satisfaction scales differently. Some outcomes are ambiguous enough that two respondents scoring identically may mean different things. Without follow-up interviews (even 3-5 per segment), you risk building strategy on a cluster that is a statistical artifact rather than a real group of people with shared needs.

' during your presentation, and you having no customer quotes to answer with.

Creating segments and never building a finder profile with demographic overlays

Correction

Outcome-based segments are strategically powerful but operationally invisible. Your sales team cannot filter a CRM by 'speed-starved executors.' Your marketing team cannot target a LinkedIn audience by opportunity score. Without demographic, firmographic, and behavioral overlays, segments remain an analytical exercise that never influences real targeting. The fix is Step 6: systematically cross-tabulate segment membership against observable traits and build a lightweight scoring model (even a manual one) that maps new prospects to their likely segment.

Treating the segmentation as a one-time exercise and never refreshing it

Correction

Markets move. Competitors launch products that satisfy previously underserved outcomes. Customer expectations shift as technology advances. A segmentation built 18 months ago may still have the right segment structure but wrong sizing, or the priority segment may have shifted.

Schedule a re-survey every 12-18 months, even if it is a lighter version of the original. The warning sign is your product team making roadmap decisions 'for Segment 2' while citing data that is two years old. Outcome-based segments decay slower than demographic ones, but they still decay.

Producing too many segments to be actionable

Correction

A common failure mode is presenting 6 or 7 segments when the organization has resources to meaningfully target 2 or 3. Every additional segment dilutes focus and complicates messaging. If your analysis produces more than 5 segments, check whether adjacent segments can be merged without losing strategic distinction. The test is simple: if two segments would get the same product roadmap and the same marketing message, they are one segment for practical purposes.

Merge them and simplify.

Frequently Asked Questions

How many survey responses do I need for reliable outcome-based segmentation?

Aim for a minimum of 100 clean responses after removing straight-liners and incomplete surveys. With 100 responses, you can reliably extract 3-4 segments. For 5-6 segments, target 200-400 responses. Below 100, clusters are unstable, meaning re-running the algorithm produces different groupings each time. If you are stuck below 100, use the manual sorting approach described in the examples rather than pretending algorithmic clustering will be reliable at that sample size.

How do I segment customers by unmet needs if I only have qualitative interview data?

Qualitative data alone cannot produce statistically rigorous segments, but it can produce useful hypotheses. Review 15-20 JTBD interview transcripts and tag each interviewee's top 3-5 pain points using your desired outcome statements. Sort interviewees by their dominant pain points and look for natural groupings. You will typically see 2-3 patterns emerge. Treat these as hypothesis segments and design a quantitative survey to validate whether those patterns hold at scale. The qualitative-first approach is slower but ensures your outcome statements are grounded in real language before you survey broadly.

Should I segment customers by unmet needs before or after building a job map?

After. The job map structures the full set of job steps, and desired outcome statements are written for each step. You need those outcomes to exist before you can survey customers on importance and satisfaction. The recommended sequence is: [define the core functional job](/skills/defining-core-functional-jobs), [create a job map](/skills/creating-job-maps), [write desired outcome statements](/skills/writing-desired-outcome-statements), survey customers, [identify underserved outcomes](/skills/identifying-underserved-outcome-opportunities), and then segment. Skipping ahead to segmentation without this foundation means you are clustering on incomplete or poorly defined outcomes.

How long do outcome-based segments remain valid before I need to refresh them?

Typically 12-18 months in fast-moving markets (SaaS, consumer tech) and 18-24 months in slower markets (industrial, enterprise infrastructure). The segments themselves, the clusters of needs, tend to be more stable than their sizing. A 'Speed Seekers' segment does not disappear, but it may shrink from 35% to 20% if a competitor launches a fast solution. Schedule a lighter re-survey (importance and satisfaction only, no new outcome discovery) annually to re-estimate segment sizes and check for shifts in the underserved landscape.

Why does my segmentation result keep producing one dominant segment and several tiny ones?

This usually indicates one of three problems. First, your outcomes may not differentiate enough. If 25 of your 30 outcomes are uniformly underserved across all respondents, the clustering algorithm has little variation to work with. Check whether your outcomes span diverse job steps. Second, your sample may be too homogeneous. If you surveyed only power users or only enterprise accounts, you may have pre-filtered out the variation that segmentation needs. Broaden your sample. Third, your k value may be too high. Try k=3 instead of k=5 and see if the dominant segment splits into two meaningful groups at the lower k.

Can I combine outcome-based segments with behavioral data from my product analytics?

Yes, and this is an advanced practice that strengthens both the segmentation and your ability to operationalize it. After defining outcome-based segments from survey data, map each surveyed user to their product analytics profile. Look for behavioral signatures that correlate with segment membership: feature usage patterns, session frequency, workflow sequences. If you find strong correlations, you can build a predictive model that assigns non-surveyed users to segments based on their in-product behavior alone. This makes the segmentation live and operational rather than a static research artifact.

How do I present outcome-based segments to stakeholders who are used to demographic personas?

Start by acknowledging that demographic personas are familiar and useful for some purposes, then show a concrete example where two demographic personas have opposite unmet needs, or where two customers in different demographics share the same pain. Use the overlay data from Step 6 to show how outcome segments relate to familiar demographic categories without being defined by them. Frame outcome segments as 'what to build and why' and demographic profiles as 'who to target and where.' Most stakeholders convert quickly once they see that outcome segments produce clearer roadmap decisions than personas like 'Marketing Mary' ever did.