View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

WaterFrame.plot(**kwds)

Reference

It calls the pandas DataFrame.plot() method.

Parameters

Returns

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:

Plot example

Return to mooda.WaterFrame.