使用破折号与熊猫图

时间:2018-09-26 03:37:11

标签: python pandas plotly-dash

我正在尝试使用破折号绘制数据框的特定列。

html.Div(
    children=dcc.Graph(id='chart')
)

@app.callback(
    Output('chart', 'figure'),
    [Input('column', 'value')]
) 

def helper(column):
     k = df[colName].value_counts()
     return {
        'data':[{
            'x':k.iloc[:,0],
            'y':k.iloc[:,1],
            'type': 'histogram'
        }]
     }

其中k看起来像这样:

A  10
B  20
C  22
D  11

我收到IndexingError:索引器太多。 另外,有没有一种方法可以馈入数据帧而不拆分为x和y?谢谢。

0 个答案:

没有答案