(self, dfnum, dfden, size=None, chunks="auto", **kwargs)
| 165 | |
| 166 | @derived_from(np.random.Generator, skipblocks=1) |
| 167 | def f(self, dfnum, dfden, size=None, chunks="auto", **kwargs): |
| 168 | return _wrap_func(self, "f", dfnum, dfden, size=size, chunks=chunks, **kwargs) |
| 169 | |
| 170 | @derived_from(np.random.Generator, skipblocks=1) |
| 171 | def gamma(self, shape, scale=1.0, size=None, chunks="auto", **kwargs): |
nothing calls this directly
no test coverage detected