MCPcopy Create free account
hub / github.com/dask/dask / std

Method std

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

Standard deviation

(self, ddof=0)

Source from the content-addressed store, hash-verified

1143 )
1144
1145 def std(self, ddof=0):
1146 """Standard deviation"""
1147 return self.var(ddof=ddof).apply(math.sqrt)
1148
1149 def join(self, other, on_self, on_other=None):
1150 """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