PhpSpreadsheet/tests/data/Calculation/Statistical/BINOMDIST.php
Mark Baker ba2b74c222
Statistics functions extended tests (#1099)
* Merge branch 'master' of C:\Projects\PHPOffice\PHPSpreadsheet\develop with conflicts.

* Further statistical tests

* Additional BINOMDIST tests
Extract boolean and string checking for Average and Count functions into separate methods

* Appease the great god PHPCS

* Yet more appeasement of the great god PHPCS

* Beginning to get really cheesed off with PHPCS, pulling me up over full stops in comments... I want to see this completed before going to bed; but it's nearly half past one in the morning, and phpcs has been pulling me up over trivialities for the past f***ing hour

* And a spurious line

* Further work on statistical tests
2019-07-21 13:07:18 +02:00

49 lines
725 B
PHP

<?php
return [
[
0.706399436132,
3, 8, 0.35, true,
],
[
0.2785857790625,
3, 8, 0.35, false,
],
[
0.538748204875,
50, 125, 0.4, true,
],
[
0.278585779062,
3, 8, 0.35, false,
],
[
0.205078125,
6, 10, 0.5, false,
],
[
1.36554E-17,
10, 100, 0.5, false,
],
[
0.079589237387,
50, 100, 0.5, false,
],
[
0.0008638556657,
65, 100, 0.5, false,
],
[
1.53165E-17,
10, 100, 0.5, true,
],
[
0.539794618694,
50, 100, 0.5, true,
],
[
0.999105034804,
65, 100, 0.5, true,
],
];