# Plotly With Pandas

> Sub-skill of plotly: With Pandas (+2).

- Skill: `vamseeachanta/plotly-with-pandas` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vamseeachanta/plotly-with-pandas`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vamseeachanta/plotly-with-pandas/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Data & Analytics
- Author: vamseeachanta (https://skillmd.com/u/vamseeachanta)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/vamseeachanta/plotly-with-pandas

---


# With Pandas (+2)

## With Pandas

```python
import plotly.express as px
df = pd.read_csv('data.csv')
fig = px.line(df, x='date', y='value')
```


## With NumPy

```python
import numpy as np
import plotly.graph_objects as go

x = np.linspace(0, 10, 100)
y = np.sin(x)

fig = go.Figure(data=go.Scatter(x=x, y=y))
```


## With Jupyter Notebooks

```python
# Automatically displays in cell output
fig.show()

# Or use widget mode
import plotly.graph_objects as go
fig = go.FigureWidget()
```

