要將Plotly圖表保存為JSON文件,您可以使用Plotly的plotly.graph_objs
模塊中的to_json
方法。以下是保存圖表為JSON文件的簡單示例代碼:
import plotly.graph_objs as go
import json
# 創(chuàng)建一個示例圖表
data = [go.Scatter(x=[1, 2, 3, 4], y=[10, 11, 12, 13], mode='lines')]
layout = go.Layout(title='Example Plot', xaxis={'title': 'X axis'}, yaxis={'title': 'Y axis'})
fig = go.Figure(data=data, layout=layout)
# 將圖表保存為JSON文件
with open('plot.json', 'w') as file:
json.dump(fig.to_dict(), file)
運(yùn)行上述代碼后,將在當(dāng)前目錄中創(chuàng)建一個名為plot.json
的JSON文件,其中包含保存的圖表數(shù)據(jù)。您可以根據(jù)需要將JSON文件加載到Plotly中進(jìn)行進(jìn)一步的處理或可視化。