MCPcopy Create free account
hub / github.com/dask/dask / integers

Method integers

dask/array/random.py:200–220  ·  view source on GitHub ↗
(
        self,
        low,
        high=None,
        size=None,
        dtype=np.int64,
        endpoint=False,
        chunks="auto",
        **kwargs,
    )

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 1

_wrap_funcFunction · 0.70

Tested by

no test coverage detected