I\'ve been using the .append() method to concatenate two tables (with the same fields) in pandas. Unfortunately this method does not exist in xarray
.append()
xarray
You can either use .concat or merge(). Documentation.
.concat
merge()