Build Your Own Data Dashboard
Follow this tutorial to create a live dashboard with Tiger Data datasets using Python, Pandas, and Plotly.
- Download your dataset from the catalogue.
- Install required packages:
pip install pandas plotly - Load your data and create a chart:
import pandas as pd
import plotly.express as px
df = pd.read_csv('your_dataset.csv')
fig = px.line(df, x='date', y='value', title='Your Data Trend')
fig.show()
For advanced dashboards, see our other guides or contact support.