Note
Go to the end to download the full example code.
Hovmoller Example#
Example of a Hovmoller plot.

from gerg_plotting import ScatterPlot, data_from_csv
# Let's read in some example data
data = data_from_csv('example_data/sample_glider_data.csv')
scatter = ScatterPlot(data)
scatter.hovmoller('temperature')
scatter.save('example_plots/hovmoller_example.png',dpi=300,bbox_inches='tight')
Total running time of the script: (0 minutes 4.775 seconds)