(
self,
low,
high=None,
size=None,
dtype=np.int64,
endpoint=False,
chunks="auto",
**kwargs,
)
| 198 | |
| 199 | @derived_from(np.random.Generator, skipblocks=1) |
| 200 | def integers( |
| 201 | self, |
| 202 | low, |
| 203 | high=None, |
| 204 | size=None, |
| 205 | dtype=np.int64, |
| 206 | endpoint=False, |
| 207 | chunks="auto", |
| 208 | **kwargs, |
| 209 | ): |
| 210 | return _wrap_func( |
| 211 | self, |
| 212 | "integers", |
| 213 | low, |
| 214 | high=high, |
| 215 | size=size, |
| 216 | dtype=dtype, |
| 217 | endpoint=endpoint, |
| 218 | chunks=chunks, |
| 219 | **kwargs, |
| 220 | ) |
| 221 | |
| 222 | @derived_from(np.random.Generator, skipblocks=1) |
| 223 | def laplace(self, loc=0.0, scale=1.0, size=None, chunks="auto", **kwargs): |
nothing calls this directly
no test coverage detected