Build Your Own Data Dashboard

Follow this tutorial to create a live dashboard with Tiger Data datasets using Python, Pandas, and Plotly.

  1. Download your dataset from the catalogue.
  2. Install required packages: pip install pandas plotly
  3. 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.