#!/usr/bin/env python # coding: utf-8 # # Introduction # # Here I am going to look at # # - a) # - b) # - c) # In[11]: import xarray as xr import numpy as np get_ipython().run_line_magic('matplotlib', 'inline') # In[12]: rand = np.random.rand(10,20) da = xr.DataArray(rand, dims=['x', 'y']) da # In[14]: da.plot(); # Some cool figure caption or other interpretational stuff. YEAH # In[ ]: