Wiggle Plot | teradataml - Wiggle Plot - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
ft:locale
en-US
ft:lastEdition
2024-12-11
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905

Use plot() function to generate a wiggle plot on DataFrame.

  • X-Axis must be a DataFrame Column.
  • Y-Axis must be a DataFrame Column.
  • Along with Y-Axis, wiggle plot requires another argument called scale.

Example

  • >>> load_example_data("uaf", ["waveletTable"])
  • >>> wiggle = DataFrame("waveletTable")
  • >>> wiggle.plot(x=wiggle.x, y=wiggle.y, scale=wiggle.c, kind='wiggle')

    Wiggle Plot