📜  plotly write html - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:14.401000             🧑  作者: Mango

代码示例1
import plotly.express as px

fig = px.scatter(x=range(10), y=range(10))
fig.write_html("path/to/file.html")