🍾 Xarray is now 10 years old! 🎉

xarray.Dataset.compute

xarray.Dataset.compute#

Dataset.compute(**kwargs)[source]#

Manually trigger loading and/or computation of this dataset’s data from disk or a remote source into memory and return a new dataset. Unlike load, the original dataset is left unaltered.

Normally, it should not be necessary to call this method in user code, because all xarray functions should either work on deferred data or load data automatically. However, this method can be necessary when working with many file objects on disk.

Parameters:

**kwargs (dict) – Additional keyword arguments passed on to dask.compute.

See also

dask.compute