MathPHP\Statistics\Regression\TheilSenTest::testGetEquation PHP Method

testGetEquation() public method

public testGetEquation ( array $points )
$points array
    public function testGetEquation(array $points)
    {
        $regression = new TheilSen($points);
        $this->assertRegExp('/^y = \\d+[.]\\d+x [+] \\d+[.]\\d+$/', $regression->getEquation());
    }