ClickHouse/tests/queries/0_stateless/02461_welch_t_test_fuzz.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
407 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS welch_ttest__fuzz_7;
CREATE TABLE welch_ttest__fuzz_7 (left UInt128, right UInt128) ENGINE = Memory;
INSERT INTO welch_ttest__fuzz_7 VALUES (0.010268, 0), (0.000167, 0), (0.000167, 0), (0.159258, 1), (0.136278, 1), (0.122389, 1);
2023-02-08 02:37:46 +00:00
SELECT roundBankers(welchTTest(left, right).2, 6) from welch_ttest__fuzz_7;
SELECT roundBankers(studentTTest(left, right).2, 6) from welch_ttest__fuzz_7;