#!/usr/bin/env python # coding: utf-8 # # Dataset - Plotting # # For most plotting purposes the DataArray rather than the Dataset are used (see other other notebooks on how-to). # # But for comparison of different items, the Dataset.plot method can be useful. # In[1]: import mikeio # In[2]: ds = mikeio.read("../tests/testdata/wind_north_sea.dfsu") ds # In[3]: ds.plot.scatter(x="Wind speed", y="Wind direction"); # In[ ]: