php-ml/tests/Phpml/Math/Statistic/MeanTest.php

65 lines
1.5 KiB
PHP
Raw Normal View History

2016-04-27 21:57:23 +00:00
<?php
2016-11-20 21:53:17 +00:00
declare(strict_types=1);
2016-04-27 21:57:23 +00:00
namespace test\Phpml\Math\StandardDeviation;
use Phpml\Math\Statistic\Mean;
2017-02-03 11:58:25 +00:00
use PHPUnit\Framework\TestCase;
2016-04-27 21:57:23 +00:00
2017-02-03 11:58:25 +00:00
class MeanTest extends TestCase
2016-04-27 21:57:23 +00:00
{
2016-05-08 17:23:54 +00:00
/**
* @expectedException \Phpml\Exception\InvalidArgumentException
*/
public function testArithmeticThrowExceptionOnEmptyArray()
{
Mean::arithmetic([]);
}
2016-04-27 21:57:23 +00:00
public function testArithmeticMean()
{
$delta = 0.01;
$this->assertEquals(3.5, Mean::arithmetic([2, 5]), '', $delta);
$this->assertEquals(41.16, Mean::arithmetic([43, 21, 25, 42, 57, 59]), '', $delta);
2016-04-28 05:32:48 +00:00
$this->assertEquals(1.7, Mean::arithmetic([0.5, 0.5, 1.5, 2.5, 3.5]), '', $delta);
2016-04-27 21:57:23 +00:00
}
2016-05-08 17:12:39 +00:00
/**
* @expectedException \Phpml\Exception\InvalidArgumentException
*/
2016-05-08 17:23:54 +00:00
public function testMedianThrowExceptionOnEmptyArray()
2016-05-08 17:12:39 +00:00
{
Mean::median([]);
}
public function testMedianOnOddLengthArray()
{
$numbers = [5, 2, 6, 1, 3];
$this->assertEquals(3, Mean::median($numbers));
}
public function testMedianOnEvenLengthArray()
{
$numbers = [5, 2, 6, 1, 3, 4];
$this->assertEquals(3.5, Mean::median($numbers));
}
2016-05-08 17:23:54 +00:00
/**
* @expectedException \Phpml\Exception\InvalidArgumentException
*/
public function testModeThrowExceptionOnEmptyArray()
{
Mean::mode([]);
}
public function testModeOnArray()
{
$numbers = [5, 2, 6, 1, 3, 4, 6, 6, 5];
$this->assertEquals(6, Mean::mode($numbers));
}
2016-04-27 21:57:23 +00:00
}