plotly

Installation
SKILL.md

Plotly

Plotly creates interactive (zoomable, hoverable) charts in the browser. v6.0 (2025) drops big dependencies (Pandas is optional) and improves performance.

When to Use

  • Dashboards: Streamlit, Dash.
  • 3D Plots: Rotating 3D scatter plots.
  • Interactivity: Users need to drill down into data.

Core Concepts

Plotly Express (px)

High-level API. px.scatter(df, x="a", y="b", color="c").

Graph Objects (go)

Low-level API. go.Figure(data=[go.Scatter(...)]).

Related skills
Installs
1
GitHub Stars
7
First Seen
Feb 10, 2026