# check out https://dash.plotly.com/ for Dash documentation
# check out https://plotly.com/python for Plotly documentation
from dash import Dash, Input, Output, callback, dcc, html
import pandas as pd
import plotly.express as px
# Best to grab the raw csv data link from GitHub
# df = pd.read_csv('my_raw_dataset_from_GitHub.csv')
"""
Use this sectiont to slice, clean, filter data to prepare it for the figure
"""
"""
# Build the figure
fig = px.bar(df, x="x_col", y="y_col")
"""
app = Dash(__name__)
app.layout = html.Div(
children=[
# assign the fig to the 'figure' property to view
dcc.Graph(figure={})
]
)