PHP 8.4.6 Released!

stats_kurtosis

(PECL stats >= 1.0.0)

stats_kurtosisComputes the kurtosis of the data in the array

Açıklama

stats_kurtosis(array $a): float

Returns the kurtosis of the values in a.

Bağımsız Değişkenler

a

The input array

Dönen Değerler

Returns the kurtosis of the values in a, or false if a is empty or is not an array.

add a note

User Contributed Notes 1 note

up
1
Angel J. Salinas
9 years ago
/ If you don't have the php_stats library, you can use this function:
public static function getKurtosis( $values )
{
$numValues = count( $values );
if ( $numValues == 0 ) {
return 0.0;
}

/ Use function from php_stats library if available
if ( function_exists( 'stats_kurtosis' ) ) {
return stats_kurtosis( $values );
}

$mean = array_sum( $values ) / floatval( $numValues );
$add2 = 0.0;
$add4 = 0.0;

foreach ( $values as $value ) {
if ( ! is_numeric( $value ) ) {
return false;
}
$dif = $value - $mean;
$dif2 = $dif * $dif;
$add2 += $dif2;
$add4 += ( $dif2 * $dif2 );
} / foreach values

$variance = $add2 / floatval( $numValues );
return ( $add4 * $numValues ) / ( $add2 * $add2 ) - 3.0;
}
To Top

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant