MCPcopy
hub / github.com/dask/dask / randint

Method randint

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

Source from the content-addressed store, hash-verified

699
700 @derived_from(np.random.RandomState, skipblocks=1)
701 def randint(self, low, high=None, size=None, chunks="auto", dtype="l", **kwargs):
702 return _wrap_func(
703 self, "randint", low, high, size=size, chunks=chunks, dtype=dtype, **kwargs
704 )
705
706 @derived_from(np.random.RandomState, skipblocks=1)
707 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