Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions xarray/structure/concat.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ def concat(
array([[0, 1, 2],
[3, 4, 5]])
Coordinates:
* y (y) int64 24B 10 20 30
x (new_dim) <U1 8B 'a' 'b'
* y (y) int64 24B 10 20 30
Dimensions without coordinates: new_dim

>>> xr.concat(
Expand All @@ -253,8 +253,8 @@ def concat(
[3, 4, 5]])
Coordinates:
* new_dim (new_dim) int64 16B -90 -100
* y (y) int64 24B 10 20 30
x (new_dim) <U1 8B 'a' 'b'
* y (y) int64 24B 10 20 30

# Concatenate a scalar variable along a new dimension of the same name with and without creating a new index

Expand Down
Loading