PHP Doku:: Returns the population variance - function.stats-variance.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzMathematische ErweiterungenStatisticsStatistic Funktionenstats_variance

Ein Service von Reinhard Neidl - Webprogrammierung.

Statistic Funktionen

<<stats_stat_powersum

Non-Text MIME-Ausgaben>>

stats_variance

(PECL stats >= 1.0.0)

stats_varianceReturns the population variance

Beschreibung

float stats_variance ( array $a [, bool $sample = false ] )
Warnung

Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.

Parameter-Liste

a

sample

Rückgabewerte


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
Anonymous
27.02.2009 22:43
This will return surprising values for most users, since the default of sample=false is rather unusual when speaking about variance.

Point is:
When using stats_variance($foo,TRUE) the sum is divided by n-1 while the default just divides it by n. So when you expect your variance to be lower you probable wanted to divide by n-1, therefore should set the second parameter =TRUE.



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)