MCPcopy Index your code
hub / github.com/dask/dask / laplace

Method laplace

dask/array/_array_expr/random.py:209–212  ·  view source on GitHub ↗
(self, loc=0.0, scale=1.0, size=None, chunks="auto", **kwargs)

Source from the content-addressed store, hash-verified

207
208 @derived_from(np.random.Generator, skipblocks=1)
209 def laplace(self, loc=0.0, scale=1.0, size=None, chunks="auto", **kwargs):
210 return _wrap_func(
211 self, "laplace", loc, scale, size=size, chunks=chunks, **kwargs
212 )
213
214 @derived_from(np.random.Generator, skipblocks=1)
215 def logistic(self, loc=0.0, scale=1.0, size=None, chunks="auto", **kwargs):

Callers 1

test_random_allFunction · 0.45

Calls 1

_wrap_funcFunction · 0.70

Tested by 1

test_random_allFunction · 0.36