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