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

Method randint

dask/array/random.py:705–708  ·  view source on GitHub ↗
(self, low, high=None, size=None, chunks="auto", dtype="l", **kwargs)

Source from the content-addressed store, hash-verified

703
704 @derived_from(np.random.RandomState, skipblocks=1)
705 def randint(self, low, high=None, size=None, chunks="auto", dtype="l", **kwargs):
706 return _wrap_func(
707 self, "randint", low, high, size=size, chunks=chunks, dtype=dtype, **kwargs
708 )
709
710 @derived_from(np.random.RandomState, skipblocks=1)
711 def random_integers(self, low, high=None, size=None, chunks="auto", **kwargs):

Callers 15

test_groupby_uniqueFunction · 0.95
_make_mimesisFunction · 0.45
random_state_data_pythonFunction · 0.45
test_avro.pyFile · 0.45
test_resample_index_nameFunction · 0.45
make_categoricalFunction · 0.45
timeseriesFunction · 0.45
test_from_arrayFunction · 0.45
test_repartition_freqFunction · 0.45

Calls 1

_wrap_funcFunction · 0.70