mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-23 01:35:12 +00:00
a2bb825bc5
* 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
16 lines
410 B
PHP
16 lines
410 B
PHP
<?php
|
|
|
|
return [
|
|
[42.000002008416, 0.908789, 40, 1.5],
|
|
[5.50669420572, 0.6, 5, 2],
|
|
[63.813775624441, 0.25, 65.5, 2.5],
|
|
[7.074774056039, 0.015, 12.5, 2.5],
|
|
[17.925225943961, 0.985, 12.5, 2.5],
|
|
['#NUM!', -0.5, 2.2, 3.3],
|
|
['#NUM!', 1.5, 2.2, 3.3],
|
|
['#NUM!', 0.5, 2.2, -3.3],
|
|
['#VALUE!', 'NaN', 2.5, 0.2],
|
|
['#VALUE!', 0.25, 'NaN', 0.2],
|
|
['#VALUE!', 0.25, 2.5, 'NaN'],
|
|
];
|