BUSINESS STATISTICS • PROBLEM-SOLVING & STATISTICAL COMMUNICATION

Choosing Statistical Methods — Choosing the Right Method for a Business Question

A systematic framework for matching the right analytical technique to any business decision you face.

Historical Context & Motivation

The challenge of selecting the right statistical tool is as old as applied statistics itself. In the early twentieth century, businesses relied almost entirely on simple averages and tabulations to understand their operations, but as markets grew more complex and data more abundant, the need for a principled approach to method selection became impossible to ignore. Choosing incorrectly—running a t-test when a chi-square test is needed, or fitting a regression when an ANOVA would suffice—leads to conclusions that are at best inefficient and at worst dangerously misleading. The history of statistical method selection tracks alongside the evolution of both statistical theory and the business problems that demanded it.

1908
Student's t-Test for Small Samples
William Sealy Gosset, working at the Guinness Brewery, developed the t-test to compare small batches of ingredients. This was one of the first instances where a specific business question—quality control with limited data—drove the creation of a new statistical method.
1925
Fisher's Framework for Experimental Design
Ronald Fisher published Statistical Methods for Research Workers, formalizing ANOVA and the logic of hypothesis testing. His work gave practitioners a systematic way to decide which test fit which experimental structure, laying the groundwork for modern method-selection frameworks.
1958
Nonparametric Methods Gain Traction
Siegel's Nonparametric Statistics for the Behavioral Sciences popularized distribution-free tests. This expanded the decision tree of method selection: analysts now had to consider whether their data met parametric assumptions before choosing a technique.
1990s
Software Democratizes Statistical Analysis
Spreadsheet tools like Excel and dedicated packages such as SPSS and SAS made hundreds of methods accessible to business users. The bottleneck shifted from computation to judgment—knowing which button to click became far less important than knowing which method to select.
2010s
Big Data and the Explosion of Choices
The rise of big data, machine learning libraries, and automated analytics platforms created an overwhelming menu of techniques. The ability to choose wisely among them became a defining competency for business analysts and data-driven managers.

This historical arc reveals a persistent question: given a specific business problem, a particular type of data, and a concrete decision that needs to be made, how does an analyst systematically choose the right statistical method? The rest of this lesson provides a structured framework for answering that question every time.

Core Principles of Method Selection

Before memorizing a catalogue of tests, it is more productive to understand the four foundational questions that guide every method-selection decision. These questions act as a diagnostic checklist: answering them narrows the universe of possible techniques to one or two appropriate choices. The principles are not merely academic—they reflect the way experienced analysts think when confronted with a new dataset and a manager asking, "What does this data tell us?"

1

What Is the Business Question?

Every analysis begins with a clearly stated question. Are you comparing groups? Predicting an outcome? Exploring associations? The type of question—descriptive, inferential, predictive, or associative—is the first filter in choosing a method.
2

What Types of Variables Are Involved?

Variables are classified as categorical (nominal or ordinal) or quantitative (interval or ratio). The measurement scale of both the outcome variable and the predictor(s) determines which mathematical operations are valid.
3

How Many Groups or Variables?

A comparison of two groups uses different machinery than a comparison of five. Similarly, predicting an outcome from one predictor differs from predicting it from ten. The dimensionality of the problem narrows the method further.
4

What Are the Data Conditions?

Sample size, the shape of the distribution, independence of observations, and equality of variances are assumptions that must be checked. Violating them may force you toward a nonparametric or robust alternative.
KEY TAKEAWAY
Think of choosing a statistical method like choosing a vehicle for a trip. You would not select a canoe to cross a desert, nor a truck to cross a lake. The business question is your destination, the variable types are the terrain, the number of groups is the distance, and the data conditions are the weather. Match all four, and you arrive at the right method every time.

The Method-Selection Decision Tree

The most powerful tool for choosing a statistical method is a decision tree that translates the four diagnostic questions from Section 2 into a visual flowchart. The diagram below traces the path from a business question to a recommended technique. Start at the top with the type of question, follow the branches determined by variable type and group count, and arrive at a specific method at the leaves of the tree.

Begin at the purple goal node, then follow the branches by answering whether you want to compare groups, predict/explain, or test an association. The variable type and number of groups narrow you to a specific test. The assumption-check panel at the bottom reminds you to verify conditions before finalizing your choice.

Notice that the tree has three major branches emerging from the goal node. The compare groups branch splits by whether your outcome is quantitative (leading to a t-test or ANOVA) or categorical (leading to a chi-square test of independence). The predict/explain branch differentiates between quantitative outcomes (simple or multiple linear regression) and categorical outcomes (logistic regression). The test association branch separates Pearson's correlation for two quantitative variables from a chi-square test when both variables are categorical. Finally, every parametric path passes through an assumption checkpoint that may redirect you to a nonparametric alternative.

How the Decision Framework Works in Detail

While the decision tree provides a high-level map, executing each decision requires understanding the underlying logic. This section elaborates on each branching criterion and introduces the key formulas that define the core methods so you can see why certain questions map to certain tests. The mathematical structure of each method directly reflects the type of question it answers.

Branch 1: Comparing Group Means (Quantitative Outcome)

When the business question asks whether two or more groups differ on a quantitative measure—such as "Do customers who see Ad A spend more than those who see Ad B?"—you are comparing means. With exactly two groups, the appropriate method is the independent-samples t-test. With three or more groups (e.g., comparing Ad A, Ad B, and Ad C), you use a one-way ANOVA to avoid inflating the Type I error rate that would result from running multiple t-tests.

INDEPENDENT-SAMPLES T-TEST
t = (x̄₁ − x̄₂) / √(s₁²/n₁ + s₂²/n₂)
where x̄₁ and x̄₂ are the sample means, s₁² and s₂² are the sample variances, and n₁ and n₂ are the sample sizes. A large |t| suggests the groups genuinely differ.
ONE-WAY ANOVA F-RATIO
F = MS_between / MS_within
where MS_between is the mean square between groups (variance due to group differences) and MS_within is the mean square within groups (variance due to individual variation). A large F indicates that at least one group mean differs significantly.

Branch 2: Predicting a Quantitative Outcome

When the question is predictive—"How does advertising spend relate to quarterly revenue?"—the method of choice is linear regression. Simple linear regression handles one predictor; multiple regression extends this to two or more predictors. The coefficient of determination, R², tells you the proportion of variation in the outcome explained by the predictor(s).

SIMPLE LINEAR REGRESSION
ŷ = b₀ + b₁x
where ŷ is the predicted value of the outcome, b₀ is the y-intercept, b₁ is the slope (change in ŷ per unit change in x), and x is the predictor variable.

Branch 3: Testing Association Between Variables

When the question is about the strength and direction of a relationship rather than prediction—"Is customer satisfaction correlated with repeat purchase frequency?"—the core tool for two quantitative variables is the Pearson correlation coefficient (r). When both variables are categorical, a chi-square test of independence determines whether the distribution of one variable depends on the level of the other.

CHI-SQUARE TEST STATISTIC
χ² = Σ [(Oᵢ − Eᵢ)² / Eᵢ]
where Oᵢ is the observed count in cell i and Eᵢ is the expected count under the null hypothesis of independence. Large χ² values indicate a statistically significant association.

Method Classification by Variable Type and Goal

A comprehensive reference table consolidates the decision logic into one place. The table below maps the intersection of your analytical goal, the outcome variable type, and the predictor variable type to the recommended statistical method. Keep this table bookmarked—it is the single most useful reference when you sit down with a new business dataset and need to choose a technique quickly.

The matrix organizes methods by analytical goal (rows) and outcome variable type (columns). Each cell names the recommended parametric method along with its nonparametric alternative when applicable. Use this as a quick-reference guide during exams and real-world projects.

The matrix reveals a critical pattern: the measurement scale of the outcome variable is arguably the single most important determinant of method choice. A quantitative outcome opens the door to mean-based analyses (t-tests, ANOVA, regression), while a categorical outcome channels you toward count-based analyses (chi-square tests, logistic regression). Internalizing this distinction alone will correctly guide you in the majority of business scenarios.

Worked Example: Selecting a Method for a Marketing Question

Let us walk through a realistic business scenario to demonstrate the decision framework in action. A retail company has tested three different email subject lines (Version A, Version B, Version C) by randomly assigning each to a segment of 500 customers. For each customer, the company recorded whether they opened the email (yes/no) and, among openers, the dollar amount spent in the subsequent 48 hours. The marketing director asks two questions: (1) "Does the subject line affect open rates?" and (2) "Among openers, does the subject line affect spending?"

Marketing Email A/B/C Test — Method Selection
1
Step 1 — Identify the Business QuestionsQuestion 1 asks whether three groups (A, B, C) differ on a categorical outcome (opened: yes or no). Question 2 asks whether three groups differ on a quantitative outcome (dollar amount spent). Both are comparison questions with three groups.
Goal: Compare 3 groups on two different outcome types.
2
Step 2 — Classify Variables for Question 1The independent variable is email version (A, B, C) — a categorical variable with three levels. The dependent variable is open status (yes/no) — a categorical, binary variable. Since both variables are categorical and we are comparing proportions across three groups, the decision tree directs us toward a chi-square test of independence using a 3 × 2 contingency table.
Question 1 → Chi-Square Test of Independence (3 × 2 table).
3
Step 3 — Classify Variables for Question 2The independent variable is again email version (three categories). The dependent variable is dollar amount spent — a quantitative, continuous variable. Three groups with a quantitative outcome points to one-way ANOVA.
Question 2 → One-Way ANOVA.
4
Step 4 — Check Assumptions for ANOVAANOVA requires (a) independence of observations (satisfied by random assignment), (b) approximate normality of the outcome within each group (check with histograms or a Shapiro-Wilk test), and (c) homogeneity of variances (check with Levene's test). Suppose the spending data is right-skewed with unequal variances. Because the sample size is large (several hundred openers per group), the Central Limit Theorem provides robustness, but we may choose to run the Welch ANOVA (which does not assume equal variances) as a precaution.
Adjusted recommendation: Welch ANOVA to accommodate unequal variances.
5
Step 5 — Summarize RecommendationsFor the marketing director: use a chi-square test to determine whether open rates differ by subject line, and a Welch ANOVA to test whether average spending differs among openers by subject line. If the ANOVA is significant, follow up with pairwise Games-Howell post hoc tests to identify which specific subject lines outperform the others.
Final answer: Chi-Square (Question 1) + Welch ANOVA with post hoc tests (Question 2).

Strengths and Common Pitfalls in Method Selection

Having a systematic framework is enormously beneficial, but no framework is foolproof. Understanding both the strengths and the common mistakes associated with method selection helps you use the decision tree with appropriate confidence and caution.

Strengths and pitfalls of the method-selection framework
AspectStrengthCommon Pitfall
Framework ApproachProvides a repeatable, logical process that reduces reliance on guesswork or habit.Over-reliance on a single decision tree may miss nuances such as repeated measures, nested data, or multicollinearity.
Variable ClassificationForces the analyst to think carefully about measurement scales before computing anything.Treating ordinal data (e.g., Likert scales) as interval data without justification can lead to inappropriate method selection.
Assumption CheckingPrevents application of parametric tests when their conditions are not met, improving validity.Failing to check assumptions—or ignoring violations—is the most common error in business analytics.
Nonparametric AlternativesOffer robust fallbacks when data violate normality or contain outliers.Defaulting to nonparametric tests when parametric tests are valid sacrifices statistical power.
Multiple TestingUsing ANOVA rather than many t-tests controls the family-wise error rate.Running dozens of exploratory tests without adjusting p-values (e.g., Bonferroni correction) inflates false-positive risk.
KEY TAKEAWAY
A decision tree is like a GPS navigation system: it gets you to the right neighborhood reliably, but the final turn sometimes requires local knowledge. Always verify assumptions, consider the business context, and be willing to consult a more advanced method (or a more experienced analyst) when the standard path does not quite fit your data.

Connection to Advanced Statistical Techniques

The core decision framework covers the methods you will encounter most frequently in introductory and intermediate business statistics courses. However, real-world business problems sometimes exceed the boundaries of these foundational techniques. Understanding how the basic methods connect to their advanced counterparts prepares you for the next level of analytical sophistication and helps you recognize when a basic method is insufficient.

Progression from basic to advanced statistical methods
Basic MethodAdvanced ExtensionWhen You Need It
Independent t-testPaired t-test / Repeated Measures ANOVAThe same subjects are measured before and after an intervention (e.g., pre/post training scores).
One-Way ANOVATwo-Way ANOVA / MANOVAYou have two or more categorical predictors, or multiple outcome variables simultaneously.
Simple RegressionMultiple Regression / Hierarchical RegressionMultiple predictors; need to control for confounders or test interaction effects.
Logistic RegressionMultinomial / Ordinal Logistic RegressionThe categorical outcome has more than two levels (e.g., customer segments: low, medium, high).
Pearson CorrelationPartial Correlation / Structural Equation ModelingYou need to remove the influence of a third variable or model complex causal networks.

The key insight is that every advanced method is a generalization of a basic one, designed to handle additional complexity—more variables, more levels, more dependencies, or more assumptions violated. Mastering the basic decision framework equips you with the conceptual scaffolding needed to learn advanced methods efficiently, because you already understand why each method exists and what type of question it is designed to answer.

Practice Problems

PROBLEM 1CONCEPTUAL
A colleague proposes running three separate independent-samples t-tests to determine whether customer satisfaction scores differ across four regional offices (East, West, North, South). Explain why this approach is problematic and identify the correct method.
PROBLEM 2BASIC CALCULATION
A human resources manager wants to know if there is a relationship between employee department (Marketing, Finance, Operations) and participation in a wellness program (Participated / Did Not Participate). She has collected counts for each combination. Which statistical method should she use, and what are the degrees of freedom for this test?
PROBLEM 3INTERMEDIATE
A product manager has data on monthly advertising expenditure (in dollars) and monthly unit sales for the past 36 months. She wants to predict next month's sales based on a planned advertising budget. However, she also suspects that the season (Q1, Q2, Q3, Q4) affects sales independently of ad spend. Which method should she use, and how should she incorporate the seasonal variable?
PROBLEM 4APPLIED
An online retailer conducts an experiment: 1,000 visitors are randomly assigned to see one of two website layouts (A or B). For each visitor, the company records (a) whether they made a purchase (yes/no) and (b) the total amount spent if they purchased. The VP of e-commerce asks: 'Which layout generates more revenue per visitor?' Outline the complete analytical plan, including method selection for each sub-question and the assumptions you would check.
PROBLEM 5CRITICAL THINKING
A consulting firm collects survey data from 200 small business owners. The survey includes owner age (years), industry (Retail, Tech, Manufacturing, Services), annual revenue (dollars), number of employees, and a self-reported growth outlook (Pessimistic, Neutral, Optimistic). A partner at the firm asks: 'What factors are most strongly associated with growth outlook?' Critically evaluate at least three possible statistical approaches, identify which is most appropriate, and justify your choice by referencing the variable types, the nature of the question, and the assumptions required.

Lesson Summary

Choosing the right statistical method begins with four diagnostic questions: What is the business question? (compare, predict, or associate), What types of variables are involved? (quantitative or categorical), How many groups or predictors are there? (two versus three or more), and Do the data meet parametric assumptions? (normality, independence, equal variances). Answering these questions in sequence narrows the universe of methods to a small set of candidates.

The core toolkit includes the t-test for two-group mean comparisons, ANOVA for three or more groups, linear regression for predicting quantitative outcomes, logistic regression for categorical outcomes, Pearson correlation for quantitative association, and chi-square tests for categorical association. When parametric assumptions are violated, nonparametric alternatives like Mann-Whitney, Kruskal-Wallis, and Spearman's rₛ provide robust fallbacks. Every advanced method is a generalization of these basics, so mastering the decision framework now lays the foundation for more sophisticated analyses in the future.

Varsity Tutors • Business Statistics • Choosing Statistical Methods — Choosing the Right Method for a Business Question