使用範本
VARPA(1,2,3,4,5,6,7,8,9,10)
VARPA(A2:A100)
語法
VARPA(value1, [value2, ...])
-
值_1
母體的第一個值或範圍。 -
值_2
要納入母體的其他值或範圍。
附註
-
Although
VARPA
is specified as taking a maximum of 30 arguments, Google Sheets supports an arbitrary number of arguments for this function. -
If the total number of values supplied as
值
arguments is not at least two,VARPA
will return the#NUM!
訊息。 -
VARPA
sets each text value encountered to0
for the purpose of calculation. To return an error upon encountering text, useVARP
. -
VARPA
calculates variance for an entire population. To calculate variance across a sample, useVARA
. -
VARPA
takes the sum of the squares of each value's deviation from the mean and divides by the number of such values. This differs from the calculation of variance across a sample in that the latter divides by the size of the dataset minus one.
另請參閱
VARP
: 根據整個總體計算變異數。
VARA
: 根據樣本計算變異數,並將文字設為「0」值。
VAR
: 根據樣本計算變異數。
STDEVPA
: 根據整個母體計算標準差,並將文字設為「0」值。
STDEVP
: 根據整個總體計算標準差。
STDEVA
: 根據樣本計算標準差,並將文字設為「0」值。
STDEV
: 根據樣本計算標準差。
SKEW
: 計算資料集的不對稱度,也就是以平均值為中心描述該資料集的對稱程度。
KURT
: 計算資料集的峰度值以描述形狀,尤其是該資料集的「高峰型態」。
DVARP
: 利用 SQL 型查詢功能在資料庫資料表形式的陣列或範圍中選取整個母體,然後傳回整個母體的變異數。
DVAR
: 利用 SQL 型查詢功能在資料庫資料表形式的陣列或範圍中選取母體樣本,然後傳回母體樣本的變異數。
DSTDEVP
: 利用 SQL 型查詢功能在資料庫資料表形式的陣列或範圍中選取整個母體,然後傳回整個母體的標準差。
DSTDEV
: 利用 SQL 型查詢功能在資料庫資料表形式的陣列或範圍中選取母體樣本,然後傳回母體樣本的標準差。
DEVSQ
: 傳回樣本的差異平方和。
AVEDEV
: 計算資料集平均值的資料偏差平均值。