PhpSpreadsheet/tests/data/Calculation/Statistical/COVAR.php
Mark Baker 6d739f1fe6
Additional statistical work (#1088)
* Merge branch 'master' of C:\Projects\PHPOffice\PHPSpreadsheet\develop with conflicts.

* More statistical tests

* Further statistical tests

* Unit tests for some of the trend functions

* resolve scrutiniser objections

* Fix order of @return types :-(
2019-07-16 20:35:48 +02:00

15 lines
176 B
PHP

<?php
return [
[
5.2,
[3, 2, 4, 5, 6],
[9, 7, 12, 15, 17],
],
[
1.25,
[[1, 2], [3, 4]],
[[5, 6], [7, 8]],
]
];