我正在寻找一种方法来绘制直方图以表示尊重2 Dropdown
的数据。为了绘制直方图,我必须选择firstcall
的值和secondcall
的值。我没有关于这个主题的很多文献,我希望你们中的一个已经面对这个问题。
请找到一个包含一些数据和我在下面尝试的代码的excel文件:
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(
"/Users/appelexcel.xlsx"
)
mgr_options = df["premierappel"].unique()
mgr_options_second = df["secondappel"].unique()
external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css']
app = dash.Dash(__name__, external_stylesheets=external_stylesheets)
colors = {
'background': '#FDFFFF',
'text': '#0A25DC'
}
app.layout = html.Div(style={'backgroundColor': colors['background']},children=[
html.H1(children='Call',
style={
'textAlign': 'center',
'color': colors['text']
}
),
html.Div(
[
dcc.Dropdown(
id="premierappel",
options=[{
'label': i,
'value': i
} for i in mgr_options],
value='All First Call'),
],
style={'width': '25%',
'display': 'inline-block'}),
dcc.Graph(id='secondcallgraph'),
#The first plot just give the 2nd call
html.Div(
[
dcc.Dropdown(
id="secondappel",
options=[{
'label': i,
'value': i
} for i in mgr_options_second],
value='All Second Call'),
],
style={'width': '25%',
'display': 'inline-block'}),
dcc.Graph(id='thirdcallgraph'), # second figure
])
@app.callback(
dash.dependencies.Output('secondcallgraph', 'figure'),
[dash.dependencies.Input('premierappel', 'value')])
def update_graph(premierappel):
if premierappel == "All First Call":
df_plot = df.copy()
else:
df_plot = df[df['premierappel'] == premierappel]
#func=(lambda x: round(100*x.count()/df_plot.shape[0] ,2))
pv = pd.pivot_table(
df_plot,
index=['Age_1_2'],
columns=['secondappel'],
values=['frequency_1_2'],
aggfunc=sum,
fill_value=0)
trace1 = go.Bar(x=pv.index, y=pv[('frequency_1_2', 'modification')], name='Modification')
trace2 = go.Bar(x=pv.index, y=pv[('frequency_1_2', 'informations')], name='Informations')
trace3 = go.Bar(x=pv.index, y=pv[('frequency_1_2', 'autres')], name='Autres')
trace4 = go.Bar(x=pv.index, y=pv[('frequency_1_2', 'achat')], name='Achat')
return {
'data': [trace1, trace2, trace3, trace4],
'layout':
go.Layout(
title='Appel 2 / {}'.format(premierappel),
xaxis=dict(
title='Days after 1st Call'),
yaxis=dict(
title='Count'),
barmode='stack')
}
我的问题出现在这里,我该如何告诉他考虑两个条件(第一次打资格,第二个打资格)?
@app.callback(
dash.dependencies.Output('thirdcallgraph', 'figure'),
[dash.dependencies.Input('premierappel', 'value'), dash.dependencies.Input('secondappel', 'value')])
def update_graph(premierappel,secondappel):
if premierappel & secondappel == "All Second Call":
df_plot = df.copy()
else:
df_plot = df[(df['premierappel']==premierappel) & (df['secondappel']==secondappel)]
#func=(lambda x: round(100*x.count()/df_plot.shape[0] ,2))
pv = pd.pivot_table(
df_plot,
index=['Age_2_3'],
columns=['troisiemeappel'],
values=['frequency_2_3'],
aggfunc=sum,
fill_value=0)
trace1 = go.Bar(x=pv.index, y=pv[('frequency_2_3', 'modification')], name='Modification')
trace2 = go.Bar(x=pv.index, y=pv[('frequency_2_3', 'informations')], name='Informations')
trace3 = go.Bar(x=pv.index, y=pv[('frequency_2_3', 'autres')], name='Autres')
trace4 = go.Bar(x=pv.index, y=pv[('frequency_2_3', 'achat')], name='Achat')
return {
'data': [trace1, trace2, trace3, trace4],
'layout':
go.Layout(
title='Appel 2 / {}'.format(secondappel),
xaxis=dict(
title='Days after 2nd Call'),
yaxis=dict(
title='Count'),
barmode='stack')
}
if __name__ == '__main__':
app.run_server(debug=True)
感谢您的时间!
年龄_._。 :通话间隔时间。
频率:应该是频率,但实际上只是为了观察其工作原理是随机的。
请找到上面的数据。 https://docs.google.com/spreadsheets/d/1u7E6GwJj1nsjOwIQIntcCWCKsczw36_iHPiEV2bjMcs/edit?usp=sharing
答案 0 :(得分:0)
我无法理解到底是什么意思。但是我可以从收到的错误消息中假设以下内容:
File "pandas\_libs\index.pyx", line 672, inpandas._libs.index.BaseMultiIndexCodesEngine.get_loc
KeyError: ('frequency_2_3', 'modification')
就是这样。
在第二个回调中,您将分配四个跟踪。但是变量(pandas.Series())pv
将只包含一个列(在我的调试试用期间)。
假设第二个回调应该用作过滤器:
该解决方案可能涉及一个If ... elif ... else
块。