对两个总体的样本应用 Welch t检验。
语法
welchTTest(sample_data, sample_index)
两个样本的值都在 sample_data
列中。如果 sample_index
等于 0,则该行的值属于第一个总体的样本。 反之属于第二个总体的样本。
零假设是群体的均值相等。假设为正态分布。总体可能具有不相等的方差。
参数sample_data
— 样本数据。Integer, Float 或 Decimal.sample_index
— 样本索引。Integer.
返回值
示例
输入表:
┌─sample_data─┬─sample_index─┐ │ 20.3 │ 0 │ │ 22.1 │ 0 │ │ 21.9 │ 0 │ │ 18.9 │ 1 │ │ 20.3 │ 1 │ │ 19 │ 1 │ └─────────────┴──────────────┘
查询:
SELECT welchTTest(sample_data, sample_index) FROM welch_ttest;
结果:
┌─welchTTest(sample_data, sample_index)─────┐ │ (2.7988719532211235,0.051807360348581945) │ └───────────────────────────────────────────┘