-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplotly2.py
48 lines (44 loc) · 2.11 KB
/
plotly2.py
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
45
46
47
48
import dash
import dash_core_components as dcc
import dash_html_components as html
import numpy as np
import plotly.graph_objs as go
app = dash.Dash()
# Creating DATA
np.random.seed(42)
random_x = np.random.randint(1, 101, 100)
random_y = np.random.randint(1, 101, 100)
app.layout = html.Div([dcc.Graph(id='scatterplot',
figure={'data': [
go.Scatter(
x=random_x,
y=random_y,
mode='markers',
marker={
'size': 12,
'color': 'rgb(51,204,153)',
'symbol': 'pentagon',
'line': {'width': 2}
}
)],
'layout': go.Layout(title='My Scatterplot',
xaxis={'title': 'Some X title'})}
),
dcc.Graph(id='scatterplot2',
figure={'data': [
go.Scatter(
x=random_x,
y=random_y,
mode='markers',
marker={
'size': 12,
'color': 'rgb(200,204,53)',
'symbol': 'pentagon',
'line': {'width': 2}
}
)],
'layout': go.Layout(title='Second Plot',
xaxis={'title': 'Some X title'})}
)])
if __name__ == '__main__':
app.run_server()