2つの母集団から得られた標本にスチューデントの t 検定を適用します。
構文
studentTTest([confidence_level])(sample_data, sample_index)
両方のサンプルの値は sample_data 列にあります。sample_index が 0 の場合、その行の値は第1母集団からのサンプルに属します。そうでない場合は第2母集団からのサンプルに属します。
帰無仮説は、母集団の平均が等しいというものです。等分散の正規分布に従うと仮定します。
引数
パラメータ
confidence_level — 信頼区間を計算するための信頼水準。Float。
返される値
2 要素または 4 要素(オプションの confidence_level が指定された場合)の Tuple:
例
入力テーブル:
┌─sample_data─┬─sample_index─┐
│ 20.3 │ 0 │
│ 21.1 │ 0 │
│ 21.9 │ 1 │
│ 21.7 │ 0 │
│ 19.9 │ 1 │
│ 21.8 │ 1 │
└─────────────┴──────────────┘
クエリ:
SELECT studentTTest(sample_data, sample_index) FROM student_ttest;
結果:
┌─studentTTest(sample_data, sample_index)───┐
│ (-0.21739130434783777,0.8385421208415731) │
└───────────────────────────────────────────┘
関連項目