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

Method full

dask/array/backends.py:387–393  ·  view source on GitHub ↗

Create a uniformly filled array Returns a new array having a specified shape and filled with fill_value.

(shape, fill_value, *, dtype=None, meta=None, **kwargs)

Source from the content-addressed store, hash-verified

385
386 @staticmethod
387 def full(shape, fill_value, *, dtype=None, meta=None, **kwargs):
388 """Create a uniformly filled array
389
390 Returns a new array having a specified shape and filled
391 with fill_value.
392 """
393 raise NotImplementedError
394
395 @staticmethod
396 def arange(start, /, stop=None, step=1, *, dtype=None, meta=None, **kwargs):

Callers 15

concat_pandasFunction · 0.45
pandas_read_textFunction · 0.45
_read_tableMethod · 0.45
merge_percentilesFunction · 0.45
_numelFunction · 0.45
test_string_auto_chunkFunction · 0.45
test_fullFunction · 0.45

Calls

no outgoing calls