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