Key word

  • Plotly

はじめに

PlotlyをHTMLで出力しwebサイトに埋め込みます.

コード

出力

import plotly.graph_objects as go

data = # 何らかのplotをする
fig = go.Figure(data)
fig.write_html("plotly.html", include_plotlyjs='cdn',full_html=False)

埋め込み

<iframe src="path/to/plotly.html" width="80%" height="400px"></iframe>