#!/usr/bin/env python # coding: utf-8 # # Blank template # # Use this notebook from Binder to test an issue or reproduce a bug report # In[ ]: import xarray as xr import numpy as np import pandas as pd ds = xr.tutorial.load_dataset("air_temperature") da = ds["air"] # In[ ]: