Last active
October 16, 2020 08:08
-
-
Save nickefy/c2d1605afb6b0506a322244c6319ddd3 to your computer and use it in GitHub Desktop.
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
import dash | |
import dash_html_components as html | |
import dash_core_components as dcc | |
from dash.dependencies import Input, Output | |
import plotly.graph_objs as go | |
from numpy import random | |
app = dash.Dash() | |
# initiate dataframe | |
df = pd.DataFrame(columns=['time', 'cats']) | |
app.layout = html.Div([ | |
dcc.Graph( | |
id='graphid', | |
figure={ | |
'data': [ | |
go.Scatter(x=df['time'], y=df['cats'], mode = 'lines+markers') | |
], | |
'layout': { | |
'title': 'Stock Price for X over time' | |
} | |
} | |
), | |
dcc.Interval( | |
id='1-second-interval', | |
interval=1000, # 2000 milliseconds = 2 seconds | |
n_intervals=0 | |
), | |
]) | |
@app.callback(Output('graphid', 'figure'), | |
[Input('1-second-interval', 'n_intervals')]) | |
def update_layout(n): | |
df.loc[n] = [n,random.randint(10)] | |
figure={ | |
'data': [ | |
go.Scatter(x=df['time'], y=df['cats'], mode = 'lines+markers') | |
], | |
'layout': { | |
'title': 'Stock Price for X over time' | |
} | |
} | |
return figure | |
if __name__ == '__main__': | |
app.run_server() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment