(self, a, b, size=None, chunks="auto", **kwargs)
| 105 | |
| 106 | @derived_from(np.random.Generator, skipblocks=1) |
| 107 | def beta(self, a, b, size=None, chunks="auto", **kwargs): |
| 108 | return _wrap_func(self, "beta", a, b, size=size, chunks=chunks, **kwargs) |
| 109 | |
| 110 | @derived_from(np.random.Generator, skipblocks=1) |
| 111 | def binomial(self, n, p, size=None, chunks="auto", **kwargs): |