Skip to content

API Reference

Dr. Yasser Mustafa edited this page Feb 16, 2026 · 1 revision

PipePlotly API Reference

Detailed reference for all PipePlotly visualization verbs, optimized for the >> operator.

1. Initialization

VerbDescriptionExample
Plot(df)Primary entry pointdf >> Plot()

2. Geometry Verbs (Geoms)

VerbDescriptionParameters
plot_pointsScatter plotx, y
plot_linesLine plotx, y
plot_barsBar chartx, y (optional)
plot_histogramHistogramx, bins
plot_boxBox plotx, y
plot_violinViolin plotx, y
plot_densityDensity plotx
plot_heatmapHeatmapx, y, color

3. Aesthetic Verbs

VerbDescriptionUsage
add_colorMap data to color>> add_color('category')
add_sizeMap data to size>> add_size('population')
add_shapeMap data to point shape>> add_shape('type')
add_facetsCreate subplots>> add_facets(cols='species')
add_labelsSet titles and axes>> add_labels(title='My Plot')
add_smoothAdd trend lines>> add_smooth(method='loess')

4. Output Verbs

VerbDescription
show()Render plot
save(path)Export to file
to_interactive()Switch to Plotly
to_static()Switch to plotnine

Clone this wiki locally