Compare if two means are equal.

Parameters:

Parameters:
Performs a pairwise t-test to assess the statistical significance of the difference in means between a baseline population and multiple other populations.
This action compares the first row (baseline population) in the input table with each subsequent row using Student’s t-test or Welch’s t-test, depending on the assumption of equal variance. The output includes p-values and test outcomes indicating whether population means are statistically equal.
If you want to compare more than two populations simultaneously, consider using an ANOVA test instead.
📷 Input Table Screenshot

Self-explanatory. Each row represents a population, each column represents one observation per group.
The first row is treated as the baseline. Each subsequent row is compared to it.
Assumes normally distributed variables.
The output table includes the following columns:
| Column | Description |
|---|---|
Compared Populations |
Shows the baseline and the target population being compared (e.g. "104.96" vs "97.77") |
_P-Value |
Probability that the two population means are equal |
_TestOutcome |
1 if means are considered equal (null hypothesis accepted), 0 otherwise |
📷 Output Table Screenshot

You're comparing the results of a treatment across multiple test groups. The first row contains results from the control group. You want to know whether the treated groups (rows 2–n) are significantly different from the control.
See dedicated page for more information.