-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdash-4-graph.py
More file actions
44 lines (37 loc) · 1.01 KB
/
dash-4-graph.py
File metadata and controls
44 lines (37 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import dash
from dash.dependencies import Output, Event
import dash_html_components as html
import dash_core_components as dcc
import random
import plotly.graph_objs as go
from collections import deque
X = deque(maxlen=20)
Y = deque(maxlen=20)
X.append(1)
Y.append(1)
app = dash.Dash(__name__)
app.layout = html.Div(
[
dcc.Graph(id='live-graph', animate=True),
dcc.Interval(
id='graph-update',
interval=1000
)
]
)
@app.callback(Output('live-graph', 'figure'), events=[Event('graph-update', 'interval')])
def update_graph():
global X
global Y
X.append(X[-1]+1)
Y.append(Y[-1]+Y[-1]*random.uniform(-0.1, 0.1))
data = go.Scatter(
x=list(X),
y=list(Y),
name='Scatter',
mode='lines+markers'
)
return {'data': [data], 'layout': go.Layout(xaxis=dict(range=[min(X), max(X)]),
yaxis=dict(range=[min(Y), max(Y)]))}
if __name__ == "__main__":
app.run_server(debug=True)