Method
integers
(
self,
low,
high=None,
size=None,
dtype=np.int64,
endpoint=False,
chunks="auto",
**kwargs,
)
Source from the content-addressed store, hash-verified
| 184 | |
| 185 | @derived_from(np.random.Generator, skipblocks=1) |
| 186 | def integers( |
| 187 | self, |
| 188 | low, |
| 189 | high=None, |
| 190 | size=None, |
| 191 | dtype=np.int64, |
| 192 | endpoint=False, |
| 193 | chunks="auto", |
| 194 | **kwargs, |
| 195 | ): |
| 196 | return _wrap_func( |
| 197 | self, |
| 198 | "integers", |
| 199 | low, |
| 200 | high=high, |
| 201 | size=size, |
| 202 | dtype=dtype, |
| 203 | endpoint=endpoint, |
| 204 | chunks=chunks, |
| 205 | **kwargs, |
| 206 | ) |
| 207 | |
| 208 | @derived_from(np.random.Generator, skipblocks=1) |
| 209 | def laplace(self, loc=0.0, scale=1.0, size=None, chunks="auto", **kwargs): |