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