Sub-skill of plotly: Dashboard with Plotly Dash.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill dashboard-with-plotly-dash --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Dashboard With Plotly Dash?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-dashboard-with-plotly-dash-workspace-hub)More formats (shields.io, HTML) on the badges page.
---
name: plotly-dashboard-with-plotly-dash
description: 'Sub-skill of plotly: Dashboard with Plotly Dash.'
version: 1.0.0
category: data-visualization
type: reference
scripts_exempt: true
---
# Dashboard with Plotly Dash
## Dashboard with Plotly Dash
```python
import dash
from dash import dcc, html, Input, Output
import plotly.express as px
import pandas as pd
# Load data
df = pd.read_csv('../data/processed/dashboard_data.csv')
# Initialize app
app = dash.Dash(__name__)
# Layout
app.layout = html.Div([
html.H1('Interactive Dashboard'),
html.Div([
html.Label('Select Category:'),
dcc.Dropdown(
id='category-dropdown',
options=[{'label': cat, 'value': cat} for cat in df['category'].unique()],
value=df['category'].unique()[0]
)
], style={'width': '50%'}),
*See sub-skills for full details.*
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!