(self, loc=0.0, scale=1.0, size=None, chunks="auto", **kwargs)
| 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): |