Scientific measurement, modernized
With Python as the new lingua franca for engineers and scientists, Dash is now the leading solution for engineering user interfaces.
Here’s how you’d add this graph to your Dash app:
import dash_core_components as dcc
import plotly.graph_objs as go
dcc.Graph(
figure=go.Figure(
data=[
go.Scatter(
x=[...],
y=[...],
...
)
)
],
layout=go.Layout(
title='X-Ray Diffraction of Potassium Chloride over Various Angles',
...
),
style={'height': 800},
id='my-graph'
)
Dash core component documentation