略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: stats_variance

2024-04-24

stats_variance

(PECL stats >= 1.0.0)

stats_varianceReturns the variance

说明

stats_variance ( array $a [, bool $sample = FALSE ] ) : float

Returns the variance of the values in a.

参数

a

The array of data to find the standard deviation for. Note that all values of the array will be cast to float.

sample

Indicates if a represents a sample of the population; defaults to FALSE.

返回值

Returns the variance on success; FALSE on failure.

add a note add a note

User Contributed Notes 1 note

up
-9
Anonymous
10 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.

官方地址:https://www.php.net/manual/en/function.stats-variance.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3