stats_variance

(PECL stats >= 1.0.0)

stats_varianceReturns the population variance

설명

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

이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다.

인수

a

sample

반환값

add a note add a note

User Contributed Notes 1 note

up
-6
Anonymous
15 years ago
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.
To Top