You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fig = go.Figure(data=go.Scatter(
y = np.random.randn(500),mode='markers',
marker=dict(
size=24,
color=np.random.randn(500), #set color equal to a variable
colorscale='RdBu', # one of plotly colorscales
showscale=True)
))
fig.update_layout(template= 'plotly_dark')
fig.show()