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

Method logistic

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

Source from the content-addressed store, hash-verified

213
214 @derived_from(np.random.Generator, skipblocks=1)
215 def logistic(self, loc=0.0, scale=1.0, size=None, chunks="auto", **kwargs):
216 return _wrap_func(
217 self, "logistic", loc, scale, size=size, chunks=chunks, **kwargs
218 )
219
220 @derived_from(np.random.Generator, skipblocks=1)
221 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