cf.Index.concatenate

classmethod Index.concatenate(variables, axis=0, cull_graph=True)[source]

Join a sequence of variables together.

See also

Data.cull_graph

Parameters

variables: sequence of constructs.

axis: int, optional

cull_graph: bool, optional

By default cull_graph is True, meaning that unnecessary tasks are removed (culled) from each array’s dask graph before concatenation. This process has a small overhead but can improve performance overall. If set to False then dask graphs are not culled. See dask.optimization.cull for details.

New in version 3.14.0.

Returns

TODO