---
title: "standardDeviation(deltaDegreesOfFreedom:)"
framework: tabulardata
role: symbol
role_heading: Instance Method
path: "tabulardata/filledcolumn/standarddeviation(deltadegreesoffreedom:)-4cofd"
---

# standardDeviation(deltaDegreesOfFreedom:)

Returns the standard deviation of the integer column’s elements.

## Declaration

```swift
func standardDeviation(deltaDegreesOfFreedom: Int = 1) -> Double?
```

## Parameters

- `deltaDegreesOfFreedom`: A nonnegative integer. The method calculates the standard deviation’s divisor by subtracting this parameter from the number of non-nil elements (n - deltaDegreesOfFreedom where n is the number of non-nil elements).

## Return Value

Return Value The standard deviation; otherwise, nil if there are fewer than deltaDegreesOfFreedom + 1 non-nil items in the column.

## See Also

### Getting Statistical Values

- [sum()](tabulardata/filledcolumn/sum()-5836l.md)
- [sum()](tabulardata/filledcolumn/sum()-2805h.md)
- [min()](tabulardata/filledcolumn/min().md)
- [max()](tabulardata/filledcolumn/max().md)
- [mean()](tabulardata/filledcolumn/mean()-8xs60.md)
- [mean()](tabulardata/filledcolumn/mean()-jd3v.md)
- [standardDeviation(deltaDegreesOfFreedom:)](tabulardata/filledcolumn/standarddeviation(deltadegreesoffreedom:)-27xnl.md)
