MCPcopy
hub / github.com/dask/dask / std

Method std

dask/dataframe/dask_expr/_expr.py:297–298  ·  view source on GitHub ↗
(self, axis=0, skipna=True, ddof=1, numeric_only=False, split_every=False)

Source from the content-addressed store, hash-verified

295 raise ValueError(f"axis={axis} not supported. Please specify 0 or 1")
296
297 def std(self, axis=0, skipna=True, ddof=1, numeric_only=False, split_every=False):
298 return Sqrt(self.var(axis, skipna, ddof, numeric_only, split_every=split_every))
299
300 def mean(self, skipna=True, numeric_only=False, split_every=False, axis=0):
301 return Mean(

Callers 4

test_std_columns_intFunction · 0.45
test_std_var_sliceFunction · 0.45
test_std_kwargsFunction · 0.45

Calls 2

varMethod · 0.95
SqrtClass · 0.85

Tested by 3

test_std_columns_intFunction · 0.36
test_std_var_sliceFunction · 0.36
test_std_kwargsFunction · 0.36