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

Method gumbel

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

Source from the content-addressed store, hash-verified

165
166 @derived_from(np.random.Generator, skipblocks=1)
167 def gumbel(self, loc=0.0, scale=1.0, size=None, chunks="auto", **kwargs):
168 return _wrap_func(
169 self, "gumbel", loc, scale, size=size, chunks=chunks, **kwargs
170 )
171
172 @derived_from(np.random.Generator, skipblocks=1)
173 def hypergeometric(self, ngood, nbad, nsample, 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