wiggle

function of dascore.viz.wiggle source

wiggle(
    patch: Patch ,
    dim ,
    color ,
    ax: Axes | None ,
    timefmt ,
    show ,
)-> Figure

Parameters

patch The Patch object. ax A matplotlib object, if None create one. color Color of wiggles timefmt The format for the time axis. show If True, show the plot, else just return axis.

Examples

Plot the default patch

import dascore as dc patch = dc.get_example_patch()

Parameters

Parameter Description
patch The Patch object.
ax A matplotlib object, if None create one.
color Color of wiggles
timefmt The format for the time axis.
show If True, show the plot, else just return axis.

Examples

# Plot the default patch
import dascore as dc
patch = dc.get_example_patch()
_ = patch.viz.wiggle()