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

Method normal

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

Source from the content-addressed store, hash-verified

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

Calls 1

_wrap_funcFunction · 0.70