Files
PhpSpreadsheet/tests/data/Calculation/Statistical/ZTEST.php
T
Mark Baker a2bb825bc5 Extract Normal and Standard Normal Distributions from the Statistical Class (#1981)
* Extract Normal and Standard Normal Distributions from the Statistical Class
* Extract ZTest from the Statistical Class, and move it to the Standard Normal Distribution class
Additional unit tests for NORMINV()
* Extract LogNormal distribution functions from Statistical
2021-04-02 20:17:03 +02:00

43 lines
674 B
PHP

<?php
return [
[
0.090574196851,
[3, 6, 7, 8, 6, 5, 4, 2, 1, 9],
4,
],
[
0.863043389130,
[3, 6, 7, 8, 6, 5, 4, 2, 1, 9],
6,
],
[
0.371103278559,
[4, 5, 2, 5, 8, 9, 3, 2, 3, 8, 9, 5],
5,
],
[
0.83812918702,
[4, 5, 2, 5, 8, 9, 3, 2, 3, 8, 9, 5],
6,
],
[
0.412070447871,
[1, 2, 3, 3, 4, 4, 8, 10, 12],
5,
3,
],
[
'#VALUE!',
[1, 2, 3, 3, 4, 4, 8, 10, 12],
'NaN',
3,
],
[
'#VALUE!',
[1, 2, 3, 3, 4, 4, 8, 10, 12],
5,
'NaN',
],
];