python-从另一个函数调用fig
发布时间:2022-03-17 03:36:20 495
相关标签: # node.js
您好,这是我的一个简单的代码共享,我需要在代码func_2中使用func_1中的fig。我正在绘制一些数据,需要提取fig以在func_2中调用它,以便在dash中使用它作为测试
def func_1():
fig = make_subplots(specs=[[{"secondary_y": True}]])
def func_2():
app = Dash(__name__)
server = app.server
app.layout = html.Div(children=[
html.H1(children='Hello Dash'),
html.Div(children='''
Dash: A web application framework for your data.
'''), dcc.Graph(id='example-graph',
figure=fig)])
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报