plotly.offline.plot(graph_cout)如何指定文件名
时间: 2024-02-13 21:02:05 浏览: 183
w_onemkl_p_2021.3.0.524_offline.exe
你可以在plot函数中传递一个参数`filename`,来指定输出文件的名称和路径。例如:
```
import plotly.offline as pyo
fig = { 'data': [ ... ], 'layout': { ... } }
pyo.plot(fig, filename='my_plot.html')
```
这将在当前工作目录中创建一个名为`my_plot.html`的文件,其中包含你绘制的图表。你可以将`filename`参数设置为任何你想要的文件名和路径。
阅读全文