1

我是 plotly dash 的新手,并试图运行这个谷歌代码来理解输出。当我在 windows cmd 提示符下运行以下代码时,执行返回 URL-- http://127.0.0.1:3003 在 Chrome 浏览器中粘贴上述代码时,浏览器窗口中会显示错误加载依赖项。请在代码下方找到。

import dash
import dash_core_components as dcc
import dash_html_components as html
import plotly.graph_objs as go
import pandas as pd


df = pd.read_excel(
    "https://github.com/chris1610/pbpython/blob/master/data/salesfunnel.xlsx?raw=True"
)

pv = pd.pivot_table(df, index=['Name'], columns=["Status"], values=['Quantity'], aggfunc=sum, fill_value=0)


trace1 = go.Bar(x=pv.index, y=pv[('Quantity', 'declined')], name='Declined')
trace2 = go.Bar(x=pv.index, y=pv[('Quantity', 'pending')], name='Pending')
trace3 = go.Bar(x=pv.index, y=pv[('Quantity', 'presented')], name='Presented')
trace4 = go.Bar(x=pv.index, y=pv[('Quantity', 'won')], name='Won')

app = dash.Dash()
app.layout = html.Div(children=[
    html.H1(children='Sales Funnel Report'),
    html.Div(children='''National Sales Funnel Report.'''),
    dcc.Graph(
        id='example-graph',
        figure={
            'data': [trace1, trace2, trace3, trace4],
            'layout':
            go.Layout(title='Order Status by Customer', barmode='stack')
        })
])
app.scripts.config.serve_locally = True
app.css.config.serve_locally = True
if __name__ == '__main__':
    app.run_server(port=3003)

if __name__ == '__main__':
    app.run_server(debug=True)
4

2 回答 2

3

具体不知道这个问题。但我最终到了这里,因为我重命名了一个 div id,所以我得到了同样的错误,但我仍然试图在我的一个回调函数中获取旧的 id 作为状态输入。

只是把它留在这里以防它帮助某人。

于 2019-10-16T16:07:09.883 回答
1

我的代码碰巧遇到了这个错误,升级 Dash 包有助于解决这个问题。

pip install dash --upgrade

在它是 v1.4.0 之前,升级为 v1.9.1

于 2020-03-12T07:25:29.843 回答