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

Method logistic

dask/array/_array_expr/random.py:217–220  ·  view source on GitHub ↗
(self, loc=0.0, scale=1.0, size=None, chunks="auto", **kwargs)

Source from the content-addressed store, hash-verified

215
216 @derived_from(np.random.Generator, skipblocks=1)
217 def logistic(self, loc=0.0, scale=1.0, size=None, chunks="auto", **kwargs):
218 return _wrap_func(
219 self, "logistic", loc, scale, size=size, chunks=chunks, **kwargs
220 )
221
222 @derived_from(np.random.Generator, skipblocks=1)
223 def lognormal(self, mean=0.0, sigma=1.0, size=None, chunks="auto", **kwargs):

Callers 1

test_random_allFunction · 0.45

Calls 1

_wrap_funcFunction · 0.70

Tested by 1

test_random_allFunction · 0.36