WaterFrame.plot(**kwds)
Reference
It calls the pandas DataFrame.plot() method.
Parameters
- **kwds: All other plotting keyword arguments to be passed to DataFrame.plot().
Returns
- ax: Axes of the plot. (matplotlib.AxesSubplot)
Example
To reproduce the example, download the NetCDF file here and save it as example.nc
in the same python script folder.
import mooda as md
import matplotlib.pyplot as plt
path = "MO_TS_MO_OBSEA_201401.nc" # Path to the NetCDF file
wf = md.read_nc_emodnet(path)
wf.resample('H')
wf.plot(y=['TEMP', 'ATMS'])
plt.tight_layout()
plt.show()
Output:
Return to mooda.WaterFrame.