welchTTest

Applies Welch’s t-test to samples from two populations.

Syntax

  1. welchTTest(sample_data, sample_index)

Values of both samples are in the sample_data column. If sample_index equals to 0 then the value in that row belongs to the sample from the first population. Otherwise it belongs to the sample from the second population.
The null hypothesis is that means of populations are equal. Normal distribution is assumed. Populations may have unequal variance.

Arguments

Returned values

Tuple with two elements:

Example

Input table:

  1. ┌─sample_data─┬─sample_index─┐
  2. 20.3 0
  3. 22.1 0
  4. 21.9 0
  5. 18.9 1
  6. 20.3 1
  7. 19 1
  8. └─────────────┴──────────────┘

Query:

  1. SELECT welchTTest(sample_data, sample_index) FROM welch_ttest;

Result:

  1. ┌─welchTTest(sample_data, sample_index)─────┐
  2. (2.7988719532211235,0.051807360348581945)
  3. └───────────────────────────────────────────┘

See Also

Original article