welch t-test

This commit is contained in:
antikvist 2020-06-17 21:56:39 +03:00
parent d92160e734
commit e4792df9a9

View File

@ -14,4 +14,5 @@ DROP TABLE IF EXISTS welch_ttest;
CREATE TABLE welch_ttest (left Int64, right Int64) ENGINE = Memory;
INSERT INTO welch_ttest VALUES (1, 1), (1, 1), (1, 1);
SELECT WelchTTest(0.1)(left, right) from welch_ttest;
SELECT WelchTTest(0.1)(left, right) from welch_ttest;
DROP TABLE IF EXISTS welch_ttest;