PhpSpreadsheet/tests/data/Calculation/Statistical/CONFIDENCE.php
Mark Baker fe121e8f7a
Additional statistical unit tests for non-happy path (#1594)
* Additional statistical unit tests for non-happy path
2020-07-25 21:58:08 +02:00

29 lines
370 B
PHP

<?php
return [
[
0.692951912734,
0.05, 2.5, 50,
],
[
0.48999099653,
0.05, 2.5, 100,
],
[
0.013719747903,
0.05, 0.07, 100,
],
[
'#VALUE!',
'NAN', 0.07, 100,
],
[
'#NUM!',
1.05, 0.07, 100,
],
[
'#NUM!',
0.05, -0.07, 100,
],
];