View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

WaterFrame.plot_hist(parameters=None, mean_line=False, **kwds)

Reference

Make a histogram of the WaterFrame’s. A histogram is a representation of the distribution of data.

This function calls pandas.DataFrame.hist(), on each parameter of the WaterFrame, resulting in one histogram per parameter.

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_netcdf = "example.nc"  # Path of the NetCDF file

wf = md.read_nc_emodnet(path_netcdf)

wf.plot_hist(parameters=['TEMP', 'PSAL', 'CNDC', 'PRES'], mean_line=True)

plt.tight_layout()
plt.show()

Output:

Plot hist example

Return to mooda.WaterFrame.