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

Method normal

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

Source from the content-addressed store, hash-verified

275
276 @derived_from(np.random.Generator, skipblocks=1)
277 def normal(self, loc=0.0, scale=1.0, size=None, chunks="auto", **kwargs):
278 return _wrap_func(
279 self, "normal", loc, scale, size=size, chunks=chunks, **kwargs
280 )
281
282 @derived_from(np.random.Generator, skipblocks=1)
283 def pareto(self, a, size=None, chunks="auto", **kwargs):

Calls 1

_wrap_funcFunction · 0.70