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

Method integers

dask/array/random.py:204–224  ·  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

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

Callers

nothing calls this directly

Calls 1

_wrap_funcFunction · 0.70

Tested by

no test coverage detected