dismiss Step into the future! Click here to switch to the beta php.net site
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Trader> <stats_stat_powersum
[edit] Last updated: Fri, 28 Jun 2013

view this page in

stats_variance

(PECL stats >= 1.0.0)

stats_varianceReturns the population variance

Description

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

This function is currently not documented; only its argument list is available.

Parameters

a

sample

Return Values



add a note add a note User Contributed Notes stats_variance - [1 notes]
up
0
Anonymous
4 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.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites