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

Method gumbel

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

Source from the content-addressed store, hash-verified

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