> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> 결과는 varPop의 제곱근입니다. stddevPop과 달리 이 함수는 수치적으로 안정적인 알고리즘을 사용합니다.

# stddevPopStable

<div id="stddevPopStable">
  ## stddevPopStable
</div>

도입 버전: v1.1.0

결과는 [varPop](/ko/reference/functions/aggregate-functions/varPop)의 제곱근과 같습니다. [stddevPop](/ko/reference/functions/aggregate-functions/stddevPop)과 달리, 이 함수는 수치적으로 안정적인 알고리즘을 사용합니다. 실행 속도는 더 느리지만 계산 오차는 더 적습니다.

**구문**

```sql theme={null}
stddevPopStable(x)
```

**인수**

* `x` — 표준 편차를 구할 값들의 모집단입니다. [`(U)Int*`](/ko/reference/data-types/int-uint), [`Float*`](/ko/reference/data-types/float) 또는 [`Decimal*`](/ko/reference/data-types/decimal)

**반환 값**

`x`의 분산의 제곱근을 반환합니다. [`Float64`](/ko/reference/data-types/float)

**예시**

**기본 사용법**

```sql title=Query theme={null}
DROP TABLE IF EXISTS test_data;
CREATE TABLE test_data
(
    population Float64,
)
ENGINE = Log;

INSERT INTO test_data SELECT randUniform(5.5, 10) FROM numbers(1000000);

SELECT
    stddevPopStable(population) AS stddev
FROM test_data;
```

```response title=Response theme={null}
┌─────────────stddev─┐
│ 1.2999977786592576 │
└────────────────────┘
```
