MathPHP\Statistics\DescriptiveTest::dataProviderForMeanAbsoluteDeviation PHP Method

dataProviderForMeanAbsoluteDeviation() public method

Data provider for MAD (mean) test Data: [ [ numbers ], mad ]
    public function dataProviderForMeanAbsoluteDeviation()
    {
        return [[[92, 83, 88, 94, 91, 85, 89, 90], 2.75], [[2, 2, 3, 4, 14], 3.6]];
    }
DescriptiveTest