(self, n, p, size=None, chunks="auto", **kwargs)
| 118 | |
| 119 | @derived_from(np.random.Generator, skipblocks=1) |
| 120 | def binomial(self, n, p, size=None, chunks="auto", **kwargs): |
| 121 | return _wrap_func(self, "binomial", n, p, size=size, chunks=chunks, **kwargs) |
| 122 | |
| 123 | @derived_from(np.random.Generator, skipblocks=1) |
| 124 | def chisquare(self, df, size=None, chunks="auto", **kwargs): |
nothing calls this directly
no test coverage detected