(self, a, b, size=None, chunks="auto", **kwargs)
| 112 | |
| 113 | @derived_from(np.random.Generator, skipblocks=1) |
| 114 | def beta(self, a, b, size=None, chunks="auto", **kwargs): |
| 115 | return _wrap_func(self, "beta", a, b, size=size, chunks=chunks, **kwargs) |
| 116 | |
| 117 | @derived_from(np.random.Generator, skipblocks=1) |
| 118 | def binomial(self, n, p, size=None, chunks="auto", **kwargs): |
nothing calls this directly
no test coverage detected