plotly中的put_figure方法用于将图形添加到指定的div元素中。其使用方法如下:
-
首先,创建一个图形对象,例如trace和layout等。
-
使用put_figure方法将图形添加到指定的div元素中。
示例代码如下:
import plotly.graph_objects as go from plotly.offline import init_notebook_mode, iplot # 创建图形对象 trace = go.Scatter( x=[1, 2, 3, 4], y=[10, 11, 12, 13] ) layout = go.Layout( title='Plotly Example' ) fig = go.Figure(data=https://www.yisu.com/ask/[trace], layout=layout)"myDiv" fig_json = fig.to_json() iplot({'data': fig_json, 'layout': {}, 'config': {'displayModeBar': False}}, show_link=False)
在上面的示例中,我们首先创建了一个Scatter图形对象,然后使用put_figure方法将该图形添加到指定的div元素中。这样就可以将图形显示在指定的div元素中。