mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-25 01:08:18 +00:00
ecbd702628
Phpstan hasn't identified any errors in Samples in a long time. But, as it turns out, one particular error is suppressed: ``` Variable $helper might not be defined. ``` This error would be generated by almost all samples, and the errors that it suppresses will become problematic if we move to Level 10. We are not yet committed to doing that, but it is pretty easy to write a script to change the samples so that error no longer happens, and there isn't really any reason to delay doing so. The results of that script constitute this PR.
59 lines
1.9 KiB
PHP
59 lines
1.9 KiB
PHP
<?php
|
|
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
|
|
require __DIR__ . '/../Header.php';
|
|
/** @var PhpOffice\PhpSpreadsheet\Helper\Sample $helper */
|
|
$category = 'Database';
|
|
$functionName = 'DSTDEV';
|
|
$description = 'Estimates the standard deviation based on a sample of selected database entries';
|
|
|
|
$helper->titles($category, $functionName, $description);
|
|
|
|
// Create new PhpSpreadsheet object
|
|
$spreadsheet = new Spreadsheet();
|
|
$worksheet = $spreadsheet->getActiveSheet();
|
|
|
|
// Add some data
|
|
$database = [['Tree', 'Height', 'Age', 'Yield', 'Profit'],
|
|
['Apple', 18, 20, 14, 105.00],
|
|
['Pear', 12, 12, 10, 96.00],
|
|
['Cherry', 13, 14, 9, 105.00],
|
|
['Apple', 14, 15, 10, 75.00],
|
|
['Pear', 9, 8, 8, 76.80],
|
|
['Apple', 8, 9, 6, 45.00],
|
|
];
|
|
$criteria = [['Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height'],
|
|
['="=Apple"', '>10', null, null, null, '<16'],
|
|
['="=Pear"', null, null, null, null, null],
|
|
];
|
|
|
|
$worksheet->fromArray($criteria, null, 'A1');
|
|
$worksheet->fromArray($database, null, 'A4');
|
|
|
|
$worksheet->setCellValue('A12', 'The estimated standard deviation in the yield of Apple and Pear trees');
|
|
$worksheet->setCellValue('B12', '=DSTDEV(A4:E10,"Yield",A1:A3)');
|
|
|
|
$worksheet->setCellValue('A13', 'The estimated standard deviation in height of Apple and Pear trees');
|
|
$worksheet->setCellValue('B13', '=DSTDEV(A4:E10,2,A1:A3)');
|
|
|
|
$helper->log('Database');
|
|
|
|
$databaseData = $worksheet->rangeToArray('A4:E10', null, true, true, true);
|
|
$helper->displayGrid($databaseData);
|
|
|
|
// Test the formulae
|
|
$helper->log('Criteria');
|
|
|
|
$criteriaData = $worksheet->rangeToArray('A1:A3', null, true, true, true);
|
|
$helper->displayGrid($criteriaData);
|
|
|
|
$helper->logCalculationResult($worksheet, $functionName, 'B12', 'A12');
|
|
|
|
$helper->log('Criteria');
|
|
|
|
$criteriaData = $worksheet->rangeToArray('A1:A3', null, true, true, true);
|
|
$helper->displayGrid($criteriaData);
|
|
|
|
$helper->logCalculationResult($worksheet, $functionName, 'B13', 'A13');
|