martinwhy commited on
Commit
f08e8e9
1 Parent(s): c7d8f62

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -0
app.py ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from dash import Dash, html, dcc, callback, Output, Input
2
+ import plotly.express as px
3
+ import pandas as pd
4
+
5
+ df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/gapminder_unfiltered.csv')
6
+
7
+ app = Dash(__name__)
8
+
9
+ app.layout = html.Div([
10
+ html.H1(children='Title of Dash App', style={'textAlign':'center'}),
11
+ dcc.Dropdown(df.country.unique(), 'Canada', id='dropdown-selection'),
12
+ dcc.Graph(id='graph-content')
13
+ ])
14
+
15
+ @callback(
16
+ Output('graph-content', 'figure'),
17
+ Input('dropdown-selection', 'value')
18
+ )
19
+ def update_graph(value):
20
+ dff = df[df.country==value]
21
+ return px.line(dff, x='year', y='pop')
22
+
23
+ if __name__ == '__main__':
24
+ app.run(debug=True)