ClickHouse/docs/ja/sql-reference/aggregate-functions/reference/varpopstable.md
2024-11-18 11:58:58 +09:00

1.1 KiB

title slug sidebar_position
varPopStable /ja/sql-reference/aggregate-functions/reference/varpopstable 211

varPopStable

母集団分散を返します。varPopとは異なり、この関数は数値的に安定したアルゴリズムを使用します。動作は遅いですが、計算誤差が少ないです。

構文

varPopStable(x)

エイリアス: VAR_POP_STABLE.

パラメータ

返される値

  • xの母集団分散を返します。Float64.

クエリ:

DROP TABLE IF EXISTS test_data;
CREATE TABLE test_data
(
    x UInt8,
)
ENGINE = Memory;

INSERT INTO test_data VALUES (3),(3),(3),(4),(4),(5),(5),(7),(11),(15);

SELECT
    varPopStable(x) AS var_pop_stable
FROM test_data;

結果:

┌─var_pop_stable─┐
│           14.4 │
└────────────────┘