plotly
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: plotly description: Interactive scientific and statistical data visualization library for Python.
Malicious tool definition detected
Tool: reference/chart-types.md Description: # Plotly Chart Types Comprehensive guide to chart types organized by category.
Malicious tool definition detected
Tool: reference/export-interactivity.md Description: # Export and Interactivity ## Static Image Export ### Installation Static image export requires Kaleido: ```bash uv pip install kaleido ``` Kaleido v1+ requires Chrome/Chromium on your system.
Malicious tool definition detected
Tool: reference/graph-objects.md Description: # Graph Objects - Low-Level API The `plotly.graph_objects` module provides fine-grained control over figure construction through Python classes representing Plotly components.
Malicious tool definition detected
Tool: reference/layouts-styling.md Description: # Layouts, Styling, and Customization ## Subplots ### Creating Subplots ```python from plotly.subplots import make_subplots import plotly.graph_objects as go # Basic grid fig = make_subplots(rows=2, cols=2) # Add traces to specific positions fig.add_trace(go.Scatter(x=[1, 2, 3], y=[4, 5, 6]), row=1, col=1) fig.add_trace(go.Bar(x=['A', 'B', 'C'], y=[1, 3, 2]), row=1, col=2) fig.add_trace(go.Scatter(x=[1, 2, 3], y=[2, 3, 4]), row=2, col=1) ``` ### Su
Malicious tool definition detected
Tool: reference/plotly-express.md Description: # Plotly Express - High-Level API Plotly Express (px) is a high-level interface for creating data visualizations with minimal code (typically 1-5 lines).