我有一个数据框,我想在Dash中显示一些数字。我有它与熊猫一起工作:
ct = pd.crosstab(df['month'], df['region']) # frequency table
ct.plot.bar(stacked=True) # create the bar plot of the frequencies
但是在Dash中我无法获得同样的效果。我尝试从Dash tutorial中采用,但是已经'type': 'barmode', 'stack': True
导致了line-plot(!),而且我不知道如何将其添加到交叉制表符中……我想解决方案非常简单但我无法使其运行...