View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

wf.iplot_line(y, x=’TIME’, marginal_x=None, marginal_y=’histogram’, color=’auto’, range_y=’auto’, line_shape=’lineard’, rangeslider_visible=True, line_group=’DEPTH’, **kwds)

It uses plotly.express.line.

Each data point is represented as a marker point, whose location is given by the x and y columns of self.data.

Reference

Parameters

Returns

Example

For this example we are going to download water temperature data from EMSO platform 68422. We will download 1000 values without specifying the time range or depth.

import mooda as md

wf = md.from_emso(platform_code='68422', parameters=['TEMP'], size=1000)

fig = wf.iplot_line('TEMP')
fig.show()

Output:

Note - The output graph is interactive. Below is the figure saved in a png image.

iplot_line-example

Return to mooda.WaterFrame.