MCPcopy
hub / github.com/dask/dask / integers

Method integers

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

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

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