(
objs: Iterable[DataTree],
dim: Hashable | T_Variable | T_DataArray | pd.Index | Any,
data_vars: T_DataVars | CombineKwargDefault = _DATA_VARS_DEFAULT,
coords: ConcatOptions | Iterable[Hashable] | CombineKwargDefault = _COORDS_DEFAULT,
compat: CompatOptions | CombineKwargDefault = _COMPAT_CONCAT_DEFAULT,
positions: Iterable[Iterable[int]] | None = None,
fill_value: object = dtypes.NA,
join: JoinOptions | CombineKwargDefault = _JOIN_DEFAULT,
combine_attrs: CombineAttrsOptions = "override",
create_index_for_new_dim: bool = True,
)
| 43 | |
| 44 | @overload |
| 45 | def concat( |
| 46 | objs: Iterable[DataTree], |
| 47 | dim: Hashable | T_Variable | T_DataArray | pd.Index | Any, |
| 48 | data_vars: T_DataVars | CombineKwargDefault = _DATA_VARS_DEFAULT, |
| 49 | coords: ConcatOptions | Iterable[Hashable] | CombineKwargDefault = _COORDS_DEFAULT, |
| 50 | compat: CompatOptions | CombineKwargDefault = _COMPAT_CONCAT_DEFAULT, |
| 51 | positions: Iterable[Iterable[int]] | None = None, |
| 52 | fill_value: object = dtypes.NA, |
| 53 | join: JoinOptions | CombineKwargDefault = _JOIN_DEFAULT, |
| 54 | combine_attrs: CombineAttrsOptions = "override", |
| 55 | create_index_for_new_dim: bool = True, |
| 56 | ) -> DataTree: ... |
| 57 | |
| 58 | |
| 59 | # TODO: replace dim: Any by 1D array_likes |
no test coverage detected
searching dependent graphs…