(self, shape, scale=1.0, size=None, chunks="auto", **kwargs)
| 169 | |
| 170 | @derived_from(np.random.Generator, skipblocks=1) |
| 171 | def gamma(self, shape, scale=1.0, size=None, chunks="auto", **kwargs): |
| 172 | return _wrap_func( |
| 173 | self, "gamma", shape, scale, size=size, chunks=chunks, **kwargs |
| 174 | ) |
| 175 | |
| 176 | @derived_from(np.random.Generator, skipblocks=1) |
| 177 | def geometric(self, p, size=None, chunks="auto", **kwargs): |
nothing calls this directly
no test coverage detected