This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run this app with `python app.py` and | |
# visit http://127.0.0.1:8050/ in your web browser. | |
import dash | |
import dash_core_components as dcc | |
import dash_html_components as html | |
import plotly.express as px | |
import pandas as pd | |
app = dash.Dash(__name__) | |
# assume you have a "long-form" data frame | |
# see https://plotly.com/python/px-arguments/ for more options | |
df = pd.DataFrame({ | |
"Fruit": ["Apples", "Oranges", "Bananas", "Apples", "Oranges", "Bananas"], | |
"Amount": [4, 1, 2, 2, 4, 5], | |
"City": ["SF", "SF", "SF", "Montreal", "Montreal", "Montreal"] | |
}) | |
fig = px.bar(df, x="Fruit", y="Amount", color="City", barmode="group") | |
app.layout = html.Div(children=[ | |
html.H1(children='Hello Dash'), | |
html.Div(children=''' | |
Dash: A web application framework for your data. | |
'''), | |
dcc.Graph( | |
id='example-graph', | |
figure=fig | |
) | |
]) | |
if __name__ == '__main__': | |
app.run_server(debug=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment