Sub-skill of plotly: With Pandas (+2).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill with-pandas --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of With Pandas?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-with-pandas-c3a8644a)More formats (shields.io, HTML) on the badges page.
---
name: plotly-with-pandas
description: 'Sub-skill of plotly: With Pandas (+2).'
version: 1.0.0
category: data-visualization
type: reference
scripts_exempt: true
---
# 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()
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!