MCPcopy Index your code
hub / github.com/dask/dask / std

Method std

dask/bag/core.py:1147–1149  ·  view source on GitHub ↗

Standard deviation

(self, ddof=0)

Source from the content-addressed store, hash-verified

1145 )
1146
1147 def std(self, ddof=0):
1148 """Standard deviation"""
1149 return self.var(ddof=ddof).apply(math.sqrt)
1150
1151 def join(self, other, on_self, on_other=None):
1152 """Joins collection with another collection.

Callers 3

test_stdFunction · 0.45
test_complex_orderingFunction · 0.45

Calls 2

varMethod · 0.95
applyMethod · 0.45

Tested by 3

test_stdFunction · 0.36
test_complex_orderingFunction · 0.36