Is it possible to append to an xarray.Dataset?
问题 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 , is there another way to do it? 回答1: Xarray doesn't have an append method because its data structures are built on top of NumPy's non-resizable arrays, so we cannot append new elements without copying the entire array. Hence, we don't implement an append method. Instead, you should use xarray.concat. One usual pattern is to accumulate Dataset