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')