(self, p, size=None, chunks="auto", **kwargs)
| 175 | |
| 176 | @derived_from(np.random.Generator, skipblocks=1) |
| 177 | def geometric(self, p, size=None, chunks="auto", **kwargs): |
| 178 | return _wrap_func(self, "geometric", p, size=size, chunks=chunks, **kwargs) |
| 179 | |
| 180 | @derived_from(np.random.Generator, skipblocks=1) |
| 181 | def gumbel(self, loc=0.0, scale=1.0, size=None, chunks="auto", **kwargs): |
nothing calls this directly
no test coverage detected