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

Method integers

dask/array/_array_expr/random.py:188–208  ·  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

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

Callers 15

test_lstsqFunction · 0.45
_get_symmatFunction · 0.45
test_broadcast_toFunction · 0.45
test_broadcast_to_arrayFunction · 0.45
test_broadcast_to_chunksFunction · 0.45
test_reshapeFunction · 0.45
test_reshape_exceptionsFunction · 0.45
test_apply_along_axisFunction · 0.45
test_apply_over_axesFunction · 0.45
test_ptpFunction · 0.45
test_diffFunction · 0.45

Calls 1

_wrap_funcFunction · 0.70

Tested by 15

test_lstsqFunction · 0.36
_get_symmatFunction · 0.36
test_broadcast_toFunction · 0.36
test_broadcast_to_arrayFunction · 0.36
test_broadcast_to_chunksFunction · 0.36
test_reshapeFunction · 0.36
test_reshape_exceptionsFunction · 0.36
test_apply_along_axisFunction · 0.36
test_apply_over_axesFunction · 0.36
test_ptpFunction · 0.36
test_diffFunction · 0.36