MathPHP\Statistics\Significance::sem PHP Méthode

sem() public static méthode

Used in the Z test. https://en.wikipedia.org/wiki/Standard_error σ SEM = -- √n
public static sem ( number , integer $n ) : float
number Population standard deviation
$n integer Sample size (number of observations of the sample)
Résultat float
    public static function sem($σ, $n)
    {
        return $σ / sqrt($n);
    }