Files
PhpSpreadsheet/tests/data/Calculation/Statistical/SKEW.php
Mark Baker e4973fa041 Start work on refactoring the last of the Excel Statistical functions (#2033)
* Refactoring the last of the Excel Statistical functions
2021-04-29 14:34:50 +02:00

29 lines
442 B
PHP

<?php
return [
[
0.359543071407,
[3, 4, 5, 2, 3, 4, 5, 6, 4, 7],
],
[
0.863378312234,
[1, 1, 2, 2, 2, 2, 3, 3, 3, 4, 4, 5, 6, 7, 8],
],
[
'#VALUE!',
[1, 1, 2, 2, 2, 2, 3, 'NaN', 3, 4, 4, 5, 6, 7, 8],
],
[
'#DIV/0!',
[1, 1],
],
[
'#DIV/0!',
[1, 1],
],
[
'#DIV/0!',
['A', 'B', 'C', 'D', 'E'],
],
];