2016-04-27 21:28:01 +00:00
|
|
|
<?php
|
|
|
|
|
2016-11-20 21:53:17 +00:00
|
|
|
declare(strict_types=1);
|
2016-04-27 21:28:01 +00:00
|
|
|
|
|
|
|
namespace test\Phpml\Math\StandardDeviation;
|
|
|
|
|
|
|
|
use Phpml\Math\Statistic\Correlation;
|
2017-02-03 11:58:25 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-04-27 21:28:01 +00:00
|
|
|
|
2017-02-03 11:58:25 +00:00
|
|
|
class CorrelationTest extends TestCase
|
2016-04-27 21:28:01 +00:00
|
|
|
{
|
|
|
|
public function testPearsonCorrelation()
|
|
|
|
{
|
|
|
|
//http://www.stat.wmich.edu/s216/book/node126.html
|
|
|
|
$delta = 0.001;
|
|
|
|
$x = [9300, 10565, 15000, 15000, 17764, 57000, 65940, 73676, 77006, 93739, 146088, 153260];
|
|
|
|
$y = [7100, 15500, 4400, 4400, 5900, 4600, 8800, 2000, 2750, 2550, 960, 1025];
|
|
|
|
$this->assertEquals(-0.641, Correlation::pearson($x, $y), '', $delta);
|
|
|
|
|
|
|
|
//http://www.statisticshowto.com/how-to-compute-pearsons-correlation-coefficients/
|
|
|
|
$delta = 0.001;
|
|
|
|
$x = [43, 21, 25, 42, 57, 59];
|
|
|
|
$y = [99, 65, 79, 75, 87, 82];
|
|
|
|
$this->assertEquals(0.549, Correlation::pearson($x, $y), '', $delta);
|
2016-04-29 21:03:08 +00:00
|
|
|
|
|
|
|
$delta = 0.001;
|
|
|
|
$x = [60, 61, 62, 63, 65];
|
|
|
|
$y = [3.1, 3.6, 3.8, 4, 4.1];
|
|
|
|
$this->assertEquals(0.911, Correlation::pearson($x, $y), '', $delta);
|
2016-04-27 21:28:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \Phpml\Exception\InvalidArgumentException
|
|
|
|
*/
|
|
|
|
public function testThrowExceptionOnInvalidArgumentsForPearsonCorrelation()
|
|
|
|
{
|
|
|
|
Correlation::pearson([1, 2, 4], [3, 5]);
|
|
|
|
}
|
|
|
|
}
|