View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

wf.iplot_scatter(y, x=‘TIME’, trendline=None, marginal_x=None, marginal_y=‘histogram’, color=‘auto’, symbol=‘DEPTH’, range_y=‘auto’, **kwds)

It makes an interactive scatter plot.

Reference

Parameters

Returns

Example

To reproduce the example, download the NetCDF file MO_TS_MO_OBSEA_201402.nc.

import mooda as md

path_netcdf = "MO_TS_MO_OBSEA_201402.nc"  # Path of the NetCDF file
wf = md.read_nc_emodnet(path_netcdf)

fig = wf.iplot_scatter('TEMP', marginal_y='histogram')
fig.show()

Output:

The output of this script is an interactive graph that cannot be displayed on the GitHub environment. To get the interactive chart, download and run this script on your computer. Below you will find the chart exported to png.

iplot_scatter-example

Return to mooda.WaterFrame.