open dataset in xarray code example
Example: how to open a dataset in xarray
import xarray as xr
#opens the dataset
ds = xr.open_dataset(/path_to_file/name_of_file.nc)
import xarray as xr
#opens the dataset
ds = xr.open_dataset(/path_to_file/name_of_file.nc)