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

Method hypergeometric

dask/array/_array_expr/random.py:175–185  ·  view source on GitHub ↗
(self, ngood, nbad, nsample, size=None, chunks="auto", **kwargs)

Source from the content-addressed store, hash-verified

173
174 @derived_from(np.random.Generator, skipblocks=1)
175 def hypergeometric(self, ngood, nbad, nsample, size=None, chunks="auto", **kwargs):
176 return _wrap_func(
177 self,
178 "hypergeometric",
179 ngood,
180 nbad,
181 nsample,
182 size=size,
183 chunks=chunks,
184 **kwargs,
185 )
186
187 @derived_from(np.random.Generator, skipblocks=1)
188 def integers(

Callers 1

test_random_allFunction · 0.45

Calls 1

_wrap_funcFunction · 0.70

Tested by 1

test_random_allFunction · 0.36