MCPcopy
hub / github.com/dask/dask / full

Method full

dask/array/backends.py:388–394  ·  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

386
387 @staticmethod
388 def full(shape, fill_value, *, dtype=None, meta=None, **kwargs):
389 """Create a uniformly filled array
390
391 Returns a new array having a specified shape and filled
392 with fill_value.
393 """
394 raise NotImplementedError
395
396 @staticmethod
397 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